Skip to content

weight

mass • heavy • lead • metal • measure • geometry • scales • balance

Created:

v0.280.0

Last changed:

v0.280.0

Contributors:

danielbayleykarsa-mistmere
html
<i data-lucide="weight"></i>
tsx
import { Weight } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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