Skip to content

shrimp-off

marine • creature • fisherman • ocean • fresh • cuisine • marine-life • seafood • shellfish • crustacean • prawn • scallop • whelk • arthropod • littleneck • quahog • allergy • intolerance • diet

Created:

v1.40.0

Last changed:

v1.40.0

Contributors:

karsa-mistmerejguddas
html
<script>
import { createIcons, ShrimpOff } from 'lucide';

createIcons({
  icons: {
    ShrimpOff
  }
});
</script>

<i data-lucide="shrimp-off"></i>  
tsx
import { ShrimpOff } from 'lucide-react';

const App = () => {
  return (
    <ShrimpOff />
  );
};

export default App;
vue
<script setup>
import { ShrimpOff } from '@lucide/vue';
</script>

<template>
  <ShrimpOff />
</template>
svelte
<script>
import { ShrimpOff } from 'lucide-svelte';
</script>

<ShrimpOff />
tsx
import { ShrimpOff } from 'lucide-preact';

const App = () => {
  return (
    <ShrimpOff />
  );
};

export default App;
tsx
import { ShrimpOff } from 'lucide-solid';

const App = () => {
  return (
    <ShrimpOff />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, ShrimpOff } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ ShrimpOff })
  ],
})

// app.component.html
<lucide-icon name="shrimp-off"></lucide-icon>
html
<div class="icon-shrimp-off"></div>

See this icon in action

Bug
Feature
Shrimp
112
8
11