Skip to content

file-check

done • document • todo • tick • complete • task

Created:

v0.11.0

Last changed:

v0.311.0

Contributors:

ericfennisdanielbayley
html
<i data-lucide="file-check"></i>
tsx
import { FileCheck } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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