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