Skip to content

fruit

lab

citrus • orange • grapefruit • lime • tomato • pomodoro technique • productivity • work • egg timer • timing • alarm • alert • olive • pitted • passion fruit • guava • juice • squeeze • smoothie • tropical • sweet • bitter • snack • meal • lunch • ingredient • cooking • cookery • kitchen • cuisine • eating • healthy • nutrition • diet • fruit machine • slots • gambling • jackpot

Contributors:

danielbayley
js
import { createIcons, icons } from 'lucide';
import { fruit } from '@lucide/lab';

createIcons({
  icons: {
    fruit
  }
});

document.body.append('<i data-lucide="fruit"></i>');  
tsx
import { Icon } from 'lucide-react';
import { fruit } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={fruit} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { fruit } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="fruit" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { fruit } from '@lucide/lab';
</script>

<Icon iconNode={fruit} />
tsx
import { Icon } from 'lucide-preact';
import { fruit } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={fruit} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { fruit } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={fruit} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { fruit } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="fruit"></lucide-icon>

See this icon in action

Bug
Feature
Fruit
112
8
11