@plurid/plurid-ui-components-react
Version:
Plurid User Interface Components for React
12 lines (11 loc) • 380 B
TypeScript
import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface ParagraphProperties {
theme?: Theme;
size?: 'small' | 'normal' | 'large';
fontFamily?: 'sans-serif' | 'serif';
style?: React.CSSProperties;
className?: string;
}
declare const Paragraph: React.FC<React.PropsWithChildren<ParagraphProperties>>;
export default Paragraph;