Add Lucide Icons to Astro
There's no first-class Lucide integration for Astro. But making a custom one isn't too hard.
This is the component I made to do the job:
---
const { icon, ...props } = Astro.props;
const [, attributes, children] = icon;
const componentChildren = ch...
chantastic.hashnode.dev4 min read