image-down
html
<script>
import { createIcons, imageDown } from 'lucide';
createIcons({
icons: {
imageDown
}
});
</script>
<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
<div class="icon-image-down"></div>
See this icon in action
Bug
Feature
Image
112
8
11