import type { SVGElementType } from 'react'; import { createSvgIconFactory, type IconNode } from './svg-icon-factory'; export const createSvgIcon = (svgIconContents: IconNode[]) => { return createSvgIconFactory( svgIconContents, element => element as SVGElementType, ); };