import React, { ReactNode } from 'react' import { Typography } from '@toptal/picasso' export interface Props { children: ReactNode 'data-testid'?: string } const Subtitle = ({ children, 'data-testid': dataTestId }: Props) => ( {children} ) Subtitle.displayName = 'Subtitle' export default Subtitle