Skip to content

bag-hand

lab

purse • finance • storage • store • ecommerce • cart • purchase • womens • girls • female • ladies • accessories • fashion • leather

Contributors:

danielbayley
js
import { createIcons, icons } from 'lucide';
import { bagHand } from '@lucide/lab';

createIcons({
  icons: {
    bagHand
  }
});

document.body.append('<i data-lucide="bag-hand"></i>');  
tsx
import { Icon } from 'lucide-react';
import { bagHand } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={bagHand} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { bagHand } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="bagHand" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { bagHand } from '@lucide/lab';
</script>

<Icon iconNode={bagHand} />
tsx
import { Icon } from 'lucide-preact';
import { bagHand } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={bagHand} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { bagHand } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={bagHand} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { bagHand } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="bagHand"></lucide-icon>

See this icon in action

Bug
Feature
Bag
112
8
11