Skip to content

panel-left

primary • drawer

Created:

v0.0.0

Last changed:

v0.184.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="panel-left"></i>
tsx
import { PanelLeft } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-panel-left"></div>
dart
Icon(LucideIcons.panel-left);