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