@useloops/design-system
Version:
The official React based Loops design system
12 lines (9 loc) • 296 B
TypeScript
import { FC } from 'react';
import { TypographyProps } from '../Typography/Typography.js';
type MarkdownProps = {
typographyProps?: Partial<TypographyProps>;
children?: string;
};
declare const Markdown: FC<MarkdownProps>;
export { Markdown as default };
export type { MarkdownProps };