feather
  
  html
  
<i data-lucide="feather"></i>
  
  tsx
  
import { Feather } from 'lucide-react';
const App = () => {
  return (
    <Feather />
  );
};
export default App;
  
  vue
  
<script setup>
  import { Feather } from 'lucide-vue-next';
</script>
<template>
  <Feather />
</template>
  
  svelte
  
<script>
import { Feather } from 'lucide-svelte';
</script>
<Feather />
  
  tsx
  
import { Feather } from 'lucide-preact';
const App = () => {
  return (
    <Feather />
  );
};
export default App;
  
  tsx
  
import { Feather } from 'lucide-solid';
const App = () => {
  return (
    <Feather />
  );
};
export default App;
  
  tsx
  
// app.module.ts
import { LucideAngularModule, Feather } from 'lucide-angular';
@NgModule({
  imports: [
    LucideAngularModule.pick({ Feather })
  ],
})
// app.component.html
<lucide-icon name="feather"></lucide-icon>
  
  html
  
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-feather"></div>
  
  dart
  
Icon(LucideIcons.feather);

