UNPKG

@useloops/design-system

Version:

The official React based Loops design system

12 lines (9 loc) 305 B
import { FC } from 'react'; import { TypographyProps } from '../Typography/Typography.js'; type HtmlParserProps = { children: string; typographyProps?: Partial<TypographyProps>; }; declare const HtmlParser: FC<HtmlParserProps>; export { HtmlParser as default }; export type { HtmlParserProps };