Skip to content

between-vertical-end

insert • add • top • 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-end"></i>
tsx
import { BetweenVerticalEnd } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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