UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

16 lines (15 loc) 611 B
import { ForwardedRef, ReactElement } from 'react'; export type MessageIconProperties = { /** @ignore */ className?: string; /** Cloned Element */ element?: ReactElement | null; }; /** * Icon to display within message content. */ declare const _default: <HTMLElementType = SVGSVGElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & MessageIconProperties) => ReactElement; export default _default;