Skip to content

clock-arrow-down

time • watch • alarm • sort • order • ascending • descending • increasing • decreasing • rising • falling

Created:

v0.406.0

Last changed:

v0.406.0

Contributors:

karsa-mistmerecolebemis
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="clock-arrow-down"></i>');  
tsx
import { ClockArrowDown } from 'lucide-react';

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

export default App;
vue
<script setup>
import { ClockArrowDown } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="clock-arrow-down"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-clock-arrow-down"></div>