Skip to content

egg

bird • chicken • nest • hatch • shell • incubate • soft boiled • hard • breakfast • brunch • morning • easter

Created:

v0.16.25

Last changed:

v0.16.25

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="egg"></i>
tsx
import { Egg } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-egg"></div>
dart
Icon(LucideIcons.egg);