Skip to content

file-input

document

Created:

v0.15.0

Last changed:

v0.311.0

Contributors:

Andretoericfenniskarsa-mistmeredanielbayley
html
<i data-lucide="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>