Skip to content

archive

index • backup • box • storage • records

Created:

v0.0.0

Last changed:

v0.269.0

Contributors:

colebemisericfenniskarsa-mistmeredanielbayley
html
<i data-lucide="archive"></i>
tsx
import { Archive } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-archive"></div>