import styles from './table.module.css' import type { THeadProps } from './table' function TH({ children, width = 'auto', ...props }: THeadProps) { return ( {children} ) } export default TH