Skip to content

biceps-flexed

arm • muscle • strong • working out • athletic • toned • muscular • forelimb • curled

Created:

v0.386.0

Last changed:

v0.386.0

Contributors:

karsa-mistmere
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="biceps-flexed"></i>');  
tsx
import { BicepsFlexed } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-biceps-flexed"></div>