import React, { ReactNode } from 'react' import cx from 'classnames' export type TruncateLinesPropsT = { as?: keyof JSX.IntrinsicElements maxLines: number children: ReactNode className?: string } export const TruncateLines = (props: TruncateLinesPropsT) => { const { maxLines, className, children, as: Component = 'div' } = props return ( {children} ) }