/** * SVG getter — looks up an icon by name from the builder icon set. * * Historically this file held its own inline SVGLibrary, duplicating many * icons that also lived in updated-icons.ts. Those have all been merged into * builder-icons.ts now, so this is just a thin wrapper. * * @param {string} type - Icon name (must exist in builder-icons.ts SVGLibrary). */ export default function SVG(type: string, _size?: string, _color?: string): string;