Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

chevrons-left

turn • corner

创建时间:

v0.0.0

最后修改:

v0.259.0

Contributors:

colebemis
html
<script>
import { createIcons, chevronsLeft } from 'lucide';

createIcons({
  icons: {
    chevronsLeft
  }
});
</script>

<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';
</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
<div class="icon-chevrons-left"></div>

看看这个图标的实际效果

错误
功能
Chevrons
112
8
11