import React from 'react' import { Box } from '../../Box/Box' import * as styles from './styles.css' export type Props = React.PropsWithChildren & styles.Variants export const Truncate = React.forwardRef( ({ children, lines }, ref) => { return ( {children} ) }, ) Truncate.displayName = 'Truncate'