/* eslint-disable import/no-extraneous-dependencies */ import base64SVG from '@lucide/build-icons/utils/base64SVG.mjs'; import { getJSBanner } from './license.mjs'; export default async ({ iconName, children, componentName, getSvg, deprecated, deprecationReason, }) => { const svgContents = await getSvg(); const svgBase64 = base64SVG(svgContents); return `\ {@render props.children?.()} `; };