Skip to content

dumbbell

barbell • weight • workout • gym

Created:

v0.98.0

Last changed:

v0.368.0

Contributors:

jguddaskarsa-mistmere
html
<i data-lucide="dumbbell"></i>
tsx
import { Dumbbell } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-dumbbell"></div>