import React from 'react' import { ForwardedRef, forwardRef } from 'react' import { TheadProps } from './types' import { TheadStyle } from './styles' function Thead(props: TheadProps, ref?: ForwardedRef) { const { sticky = false, ...rest } = props return } export default forwardRef(Thead)