image-down
html
<i data-lucide="image-down"></i>
tsx
import { ImageDown } from 'lucide-react';
const App = () => {
return (
<ImageDown />
);
};
export default App;
vue
<script setup>
import { ImageDown } from 'lucide-vue-next';
</script>
<template>
<ImageDown />
</template>
svelte
<script>
import { ImageDown } from 'lucide-svelte';
</script>
<ImageDown />
tsx
import { ImageDown } from 'lucide-preact';
const App = () => {
return (
<ImageDown />
);
};
export default App;
tsx
import { ImageDown } from 'lucide-solid';
const App = () => {
return (
<ImageDown />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, ImageDown } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ ImageDown })
],
})
// app.component.html
<lucide-icon name="image-down"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-image-down"></div>