import React from "react"; import cn from "classnames"; import { Text, TextProps } from "../Text"; export const Paragraph = (props: TextProps) => { const { className, ...rest } = props; return ( ); };