import * as React from "react"; import styled from "styled-components"; import { commonStyle, CommonStyleProps } from "./system/unions"; export type ParagraphProps = CommonStyleProps; export const Paragraph = styled.p>( {}, ...commonStyle ); Paragraph.displayName = "Paragraph";