Skip to content

fold-vertical

arrow • collapse • fold • vertical • dashed

Created:

v0.188.0

Last changed:

v0.188.0

Contributors:

danielbayley
html
<i data-lucide="fold-vertical"></i>
tsx
import { FoldVertical } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-fold-vertical"></div>