Skip to content

file-down

download • import • export

Created:

v0.68.0

Last changed:

v0.311.0

Contributors:

karsa-mistmeredanielbayley
html
<i data-lucide="file-down"></i>
tsx
import { FileDown } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-file-down"></div>