Skip to content

between-vertical-start

insert • add • bottom • slot • squeeze • space • vertical • grid • table • columns • cells • data • enter • entry • entries • blocks • rectangles • chevron

Created:

v0.306.0

Last changed:

v0.306.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

<div class="icon-between-vertical-start"></div>