UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

9 lines (8 loc) 224 B
export interface ParagraphProps { /** The text displayed. */ text?: string; /** A custom class. */ className?: string; } declare const Paragraph: (paragraph: ParagraphProps) => any; export default Paragraph;