Skip to content

chevrons-left-right-ellipsis

internet • network • connection • cable • lan • port • router • switch • hub • modem • web • online • networking • communication • socket • plug • slot • controller • connector • interface • console • signal • data • input • output

Created:

v0.426.0

Last changed:

v0.426.0

Contributors:

ericfennis
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="chevrons-left-right-ellipsis"></i>');  
tsx
import { ChevronsLeftRightEllipsis } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-chevrons-left-right-ellipsis"></div>