Files
web/components/TempDesignSystem/Table/TH.tsx
2024-10-08 15:11:53 +02:00

14 lines
273 B
TypeScript

import styles from "./table.module.css"
import type { THeadProps } from "./table"
function TH({ children, width = "auto", ...props }: THeadProps) {
return (
<th className={styles.th} style={{ width }} {...props}>
{children}
</th>
)
}
export default TH