// Type definitions for @moreyears/icons/runtime // // The shared render helper every generated per-icon module imports. Exported // publicly so consumers can build their own icon components from raw SVG. import type { IconComponent, IconProps, IconWeight } from './types'; export function renderIcon( svg: string, options?: IconProps & { name?: string; weight?: IconWeight } ): JSX.Element; export function createIcon( svg: string, name: string, weight: IconWeight ): IconComponent;