// @flow import * as React from "react"; import Text from "./"; type Props = {| +children?: React.Node, +className?: string, +color?: string, +wrap?: boolean, +muted?: boolean, |}; const TextSmall = ({ className, children, color = "", wrap, muted, }: Props): React.Node => { return ( {children} ); }; TextSmall.displayName = "Text.Small"; export default TextSmall;