Skip to content

can-soda

beverage • drink • food • soda • tin • beer • alcohol • waste

Created:

v1.41.0

Last changed:

v1.41.0

Contributors:

karsa-mistmerejaynewey
html
<script>
import { createIcons, CanSoda } from 'lucide';

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

<i data-lucide="can-soda"></i>  
tsx
import { CanSoda } from 'lucide-react';

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

export default App;
vue
<script setup>
import { CanSoda } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="can-soda"></lucide-icon>
html
<div class="icon-can-soda"></div>

See this icon in action

Bug
Feature
Can
112
8
11