跳转到内容

carrot

orange • healthy • nature • fresh • root • produce • organic • nutrition • vegetable • food • eat

创建时间:

v0.16.24

最后修改:

v1.22.0

Contributors:

Andretomittalyashuericfennisjguddaskarsa-mistmerejamiemlaw
html
<script>
import { createIcons, Carrot } from 'lucide';

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

<i data-lucide="carrot"></i>  
tsx
import { Carrot } from 'lucide-react';

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

export default App;
vue
<script setup>
import { Carrot } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="carrot"></lucide-icon>
html
<div class="icon-carrot"></div>

看看这个图标的实际效果

错误
功能
Carrot
112
8
11