import { PropsWithChildren } from 'react'; import { Icon, IconProps } from '@@/Icon'; import { useTableContext } from './TableContainer'; interface Props extends IconProps { label: string; } export function TableTitle({ icon, featherIcon, label, children, }: PropsWithChildren) { useTableContext(); return (
{label}
{children}
); }