"use client" import { Children, forwardRef } from "react" import { Icon, type IconProps } from "./icon" interface CreateIconOptions { /** * The icon `svg` viewBox * @default "0 0 24 24" */ viewBox?: string | undefined /** * The `svg` path or group element * @type React.ReactElement | React.ReactElement[] */ path?: React.ReactElement | React.ReactElement[] | undefined /** * If the `svg` has a single path, simply copy the path's `d` attribute */ d?: string | undefined /** * The display name useful in the dev tools */ displayName?: string | undefined /** * Default props automatically passed to the component; overwritable */ defaultProps?: IconProps | undefined } export function createIcon(options: CreateIconOptions) { const { viewBox = "0 0 24 24", d: pathDefinition, displayName, defaultProps = {}, } = options const path = Children.toArray(options.path) const Comp = forwardRef((props, ref) => ( {path.length ? path : } )) Comp.displayName = displayName return Comp }