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

