wine-glass-bottle
lab
js
import { createIcons, icons } from 'lucide';
import { wineGlassBottle } from '@lucide/lab';
createIcons({
icons: {
wineGlassBottle
}
});
document.body.append('<i data-lucide="wine-glass-bottle"></i>');
tsx
import { Icon } from 'lucide-react';
import { wineGlassBottle } from '@lucide/lab';
const App = () => {
return (
<Icon iconNode={wineGlassBottle} />
);
};
export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { wineGlassBottle } from '@lucide/lab';
</script>
<template>
<Icon :iconNode="wineGlassBottle" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { wineGlassBottle } from '@lucide/lab';
</script>
<Icon iconNode={wineGlassBottle} />
tsx
import { Icon } from 'lucide-preact';
import { wineGlassBottle } from '@lucide/lab';
const App = () => {
return (
<Icon iconNode={wineGlassBottle} />
);
};
export default App;
tsx
import { Icon } from 'lucide-solid';
import { wineGlassBottle } from '@lucide/lab';
const App = () => {
return (
<Icon iconNode={wineGlassBottle} />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { wineGlassBottle } from '@lucide/lab';
@NgModule({
imports: [
LucideAngularModule.pick({ wineGlassBottle })
],
})
// app.component.html
<lucide-icon name="wineGlassBottle"></lucide-icon>
See this icon in action
Bug
Feature
Wine
112
8
11