Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

shopping-bag

ecommerce • cart • purchase • store

创建时间:

v0.0.0

最后修改:

v0.522.0

Contributors:

colebemiscsandmanericfennis
html
<script>
import { createIcons, shoppingBag } from 'lucide';

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

<i data-lucide="shopping-bag"></i>  
tsx
import { ShoppingBag } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="shopping-bag"></lucide-icon>
html
<div class="icon-shopping-bag"></div>

看看这个图标的实际效果

错误
功能
Shopping
112
8
11