Skip to content

panel-bottom

drawer • dock

Created:

v0.184.0

Last changed:

v0.184.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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