Skip to content

bottle-wine

alcohol • drink • glass • goblet • chalice • vineyard • winery • red • white • rose • dry • sparkling • bar • party • nightclub • nightlife • sommelier • restaurant • dinner • meal

Created:

v0.523.0

Last changed:

v0.523.0

Contributors:

jamiemlaw
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="bottle-wine"></i>');  
tsx
import { BottleWine } from 'lucide-react';

const App = () => {
  return (
    <BottleWine />
  );
};

export default App;
vue
<script setup>
import { BottleWine } from 'lucide-vue-next';
</script>

<template>
  <BottleWine />
</template>
svelte
<script>
import { BottleWine } from 'lucide-svelte';
</script>

<BottleWine />
tsx
import { BottleWine } from 'lucide-preact';

const App = () => {
  return (
    <BottleWine />
  );
};

export default App;
tsx
import { BottleWine } from 'lucide-solid';

const App = () => {
  return (
    <BottleWine />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, BottleWine } from 'lucide-angular';

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

// app.component.html
<lucide-icon name="bottle-wine"></lucide-icon>
html
<div class="icon-bottle-wine"></div>

See this icon in action

Bug
Feature
Bottle
112
8
11