Skip to content

milk-off

lactose free • bottle • beverage • drink • water • allergy • intolerance • diet

Created:

v0.97.0

Last changed:

v0.133.0

Contributors:

karsa-mistmereericfennis
html
<i data-lucide="milk-off"></i>
tsx
import { MilkOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="milk-off"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-milk-off"></div>