Skip to content

shopping-cart

trolley • cart • basket • e-commerce • store • purchase • products • items • ingredients

Created:

v0.0.0

Last changed:

v0.45.0

Contributors:

colebemiscsandmanericfenniskarsa-mistmere
html
<i data-lucide="shopping-cart"></i>
tsx
import { ShoppingCart } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-shopping-cart"></div>