import { Text, TextProps } from './Text'; export function SingleLineText(props: TextProps) { const { numberOfLines, children, ...others } = props; return ( {children} ); }