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