跳转到内容

list-clock

history • log • clock • time • recent • updated • revision • activity • timestamp • audit • list

创建时间:

v1.33.0

最后修改:

v1.33.0

Contributors:

karsa-mistmerejamiemlawkemie
html
<script>
import { createIcons, ListClock } from 'lucide';

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

<i data-lucide="list-clock"></i>  
tsx
import { ListClock } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
List
112
8
11