import { ForwardedRef, forwardRef } from 'react' import { TdProps } from './types' import { TdStyle, ThTdContentStyle } from './styles' function Td(props: TdProps, ref?: ForwardedRef) { const { align = 'left', textColor = 'default', variant, children, numeric = false, ...rest } = props return ( {children} ) } export default forwardRef(Td)