Skip to content

carton-off

milk • dairy • beverage • drink • diet • lactose free • non dairy • liquid • liter • litre • pint • pints • pasteurized • skim • skimmed • container • packaging • allergy • intolerance • vegan • unavailable

Created:

v1.43.0

Last changed:

v1.43.0

Contributors:

danielbayleykarsa-mistmere
html
<script>
import { createIcons, CartonOff } from 'lucide';

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

<i data-lucide="carton-off"></i>  
tsx
import { CartonOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="carton-off"></lucide-icon>
html
<div class="icon-carton-off"></div>

See this icon in action

Bug
Feature
Carton
112
8
11