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

Skip to content

apple-core

lab

fruit • juice • smoothie • sweet • snack • meal • lunch • ingredient • cooking • cookery • kitchen • cuisine • eating • healthy • nutrition • diet • bite • bitten • consumed • litter • trash • rubbish

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Apple
112
8
11