html
  
<i data-lucide-name="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>
  
  dart
  
Icon(LucideIcons.fold-vertical);

