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

Skip to content

folder-check

done • directory • todo • tick • complete • task

创建时间:

v0.68.0

最后修改:

v0.289.0

Contributors:

karsa-mistmereericfennis
html
<script>
import { createIcons, folderCheck } from 'lucide';

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

<i data-lucide="folder-check"></i>  
tsx
import { FolderCheck } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Folder
112
8
11