chevrons-left-right
html
<i data-lucide="chevrons-left-right"></i>
tsx
import { ChevronsLeftRight } from 'lucide-react';
const App = () => {
return (
<ChevronsLeftRight />
);
};
export default App;
vue
<script setup>
import { ChevronsLeftRight } from 'lucide-vue-next';
</script>
<template>
<ChevronsLeftRight />
</template>
svelte
<script>
import { ChevronsLeftRight } from 'lucide-svelte';
</script>
<ChevronsLeftRight />
tsx
import { ChevronsLeftRight } from 'lucide-preact';
const App = () => {
return (
<ChevronsLeftRight />
);
};
export default App;
tsx
import { ChevronsLeftRight } from 'lucide-solid';
const App = () => {
return (
<ChevronsLeftRight />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, ChevronsLeftRight } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ ChevronsLeftRight })
],
})
// app.component.html
<lucide-icon name="chevrons-left-right"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-chevrons-left-right"></div>