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

