Skip to content

more-horizontal

ellipsis • menu • options • operator • code • spread • rest • … • ...

Created:

v0.0.0

Last changed:

v0.0.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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