stretch-vertical
html
<i data-lucide="stretch-vertical"></i>
tsx
import { StretchVertical } from 'lucide-react';
const App = () => {
return (
<StretchVertical />
);
};
export default App;
vue
<script setup>
import { StretchVertical } from 'lucide-vue-next';
</script>
<template>
<StretchVertical />
</template>
svelte
<script>
import { StretchVertical } from 'lucide-svelte';
</script>
<StretchVertical />
tsx
import { StretchVertical } from 'lucide-preact';
const App = () => {
return (
<StretchVertical />
);
};
export default App;
tsx
import { StretchVertical } from 'lucide-solid';
const App = () => {
return (
<StretchVertical />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, StretchVertical } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ StretchVertical })
],
})
// app.component.html
<lucide-icon name="stretch-vertical"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-stretch-vertical"></div>