html
<script>
import { createIcons, trendingUpDown } from 'lucide';
createIcons({
icons: {
trendingUpDown
}
});
</script>
<i data-lucide="trending-up-down"></i>
tsx
import { TrendingUpDown } from 'lucide-react';
const App = () => {
return (
<TrendingUpDown />
);
};
export default App;
vue
<script setup>
import { TrendingUpDown } from 'lucide-vue-next';
</script>
<template>
<TrendingUpDown />
</template>
svelte
<script>
import { TrendingUpDown } from 'lucide-svelte';
</script>
<TrendingUpDown />
tsx
import { TrendingUpDown } from 'lucide-preact';
const App = () => {
return (
<TrendingUpDown />
);
};
export default App;
tsx
import { TrendingUpDown } from 'lucide-solid';
const App = () => {
return (
<TrendingUpDown />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, TrendingUpDown } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ TrendingUpDown })
],
})
// app.component.html
<lucide-icon name="trending-up-down"></lucide-icon>
html
<div class="icon-trending-up-down"></div>
See this icon in action
Bug
Feature
Trending
112
8
11