Skip to content

chevrons-left

turn • corner

Created:

v0.0.0

Last changed:

v0.259.0

Contributors:

colebemis
html
<i data-lucide="chevrons-left"></i>
tsx
import { ChevronsLeft } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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