import { Ref } from 'react'; import { IconProps } from '../icon/icon.types'; export type InlineSvgProps = Omit & { /** * SVG content as a string to be rendered inline */ data: string; /** * Ref forwarding to the SVG element */ ref?: Ref; };