Skip to content

shell

beach • sand • holiday • sealife • fossil • ammonite • biology • ocean • terminal • command line • session • bash • zsh • roll • wrap • chewing gum • bubble gum • sweet • sugar • hosepipe • carpet • string • spiral • spinner • hypnotise • hypnosis

Created:

v0.264.0

Last changed:

v0.264.0

Contributors:

danielbayley
html
<i data-lucide="shell"></i>
tsx
import { Shell } from 'lucide-react';

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

export default App;
vue
<script setup>
  import { Shell } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="shell"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-shell"></div>