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

