Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

peach

lab

fruit • nectarine • apricot • plum • damson • cherry • juice • smoothie • jam • conserve • preserve • sweet • snack • meal • lunch • eating • healthy • nutrition • diet

Contributors:

danielbayley
html
<script>
import { createIcons } from 'lucide';
import { peach } from '@lucide/lab';

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

<i data-lucide="peach"></i>  
tsx
import { Icon } from 'lucide-react';
import { peach } from '@lucide/lab';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Peach
112
8
11