Skip to content

panel-top

drawer • menu bar • browser • webpage

Created:

v0.184.0

Last changed:

v0.184.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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