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

