panel-right
html
<script>
import { createIcons, panelRight } from 'lucide';
createIcons({
icons: {
panelRight
}
});
</script>
<i data-lucide="panel-right"></i>
tsx
import { PanelRight } from 'lucide-react';
const App = () => {
return (
<PanelRight />
);
};
export default App;
vue
<script setup>
import { PanelRight } from 'lucide-vue-next';
</script>
<template>
<PanelRight />
</template>
svelte
<script>
import { PanelRight } from 'lucide-svelte';
</script>
<PanelRight />
tsx
import { PanelRight } from 'lucide-preact';
const App = () => {
return (
<PanelRight />
);
};
export default App;
tsx
import { PanelRight } from 'lucide-solid';
const App = () => {
return (
<PanelRight />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, PanelRight } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ PanelRight })
],
})
// app.component.html
<lucide-icon name="panel-right"></lucide-icon>
html
<div class="icon-panel-right"></div>
See this icon in action
Bug
Feature
Panel
112
8
11