Skip to content

more-vertical

ellipsis • menu • options

Created:

v0.0.0

Last changed:

v0.0.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="more-vertical"></i>
tsx
import { MoreVertical } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-more-vertical"></div>
dart
Icon(LucideIcons.more-vertical);