Skip to content

panel-bottom-inactive

drawer • dock • show • reveal • dashed

Created:

v0.184.0

Last changed:

v0.184.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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