export const Paragraph = (props: { children: React.ReactNode; style?: React.CSSProperties; }) => { return (

{props.children}

); };