File: apple.md | Updated: 11/15/2025
Return to top
fruit • food • healthy • snack • nutrition • fresh • produce • grocery • organic • harvest • vitamin • red • green • juicy • sweet • tart • bite • orchard • plant • core • raw • diet
VanillaReactVueSveltePreactSolidAngularIcon font
js
import { createIcons, icons } from 'lucide';
createIcons({ icons });
document.body.append('<i data-lucide="apple"></i>');
tsx
import { Apple } from 'lucide-react';
const App = () => {
return (
<Apple />
);
};
export default App;
vue
<script setup>
import { Apple } from 'lucide-vue-next';
</script>
<template>
<Apple />
</template>
svelte
<script>
import { Apple } from 'lucide-svelte';
</script>
<Apple />
tsx
import { Apple } from 'lucide-preact';
const App = () => {
return (
<Apple />
);
};
export default App;
tsx
import { Apple } from 'lucide-solid';
const App = () => {
return (
<Apple />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, Apple } from 'lucide-angular';
@NgModule({
imports: [\
LucideAngularModule.pick({ Apple })\
],
})
// app.component.html
<lucide-icon name="apple"></lucide-icon>
html
<div class="icon-apple"></div>
AppleCancel
Bug
Feature
Apple
Documents Readme Apple 12
112
8
11
2