html
<script>
import { createIcons, layersPlus } from 'lucide';
createIcons({
icons: {
layersPlus
}
});
</script>
<i data-lucide="layers-plus"></i>
tsx
import { LayersPlus } from 'lucide-react';
const App = () => {
return (
<LayersPlus />
);
};
export default App;
vue
<script setup>
import { LayersPlus } from 'lucide-vue-next';
</script>
<template>
<LayersPlus />
</template>
svelte
<script>
import { LayersPlus } from 'lucide-svelte';
</script>
<LayersPlus />
tsx
import { LayersPlus } from 'lucide-preact';
const App = () => {
return (
<LayersPlus />
);
};
export default App;
tsx
import { LayersPlus } from 'lucide-solid';
const App = () => {
return (
<LayersPlus />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, LayersPlus } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ LayersPlus })
],
})
// app.component.html
<lucide-icon name="layers-plus"></lucide-icon>
html
<div class="icon-layers-plus"></div>
See this icon in action
Bug
Feature
Layers
112
8
11