@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
28 lines (18 loc) • 1.44 kB
text/typescript
import * as React from 'react';
type TableProps = React.ComponentProps<"table">;
declare function Table({ className, ...props }: TableProps): React.JSX.Element;
type TableHeaderProps = React.ComponentProps<"thead">;
declare function TableHeader({ className, ...props }: TableHeaderProps): React.JSX.Element;
type TableBodyProps = React.ComponentProps<"tbody">;
declare function TableBody({ className, ...props }: TableBodyProps): React.JSX.Element;
type TableFooterProps = React.ComponentProps<"tfoot">;
declare function TableFooter({ className, ...props }: TableFooterProps): React.JSX.Element;
type TableRowProps = React.ComponentProps<"tr">;
declare function TableRow({ className, ...props }: TableRowProps): React.JSX.Element;
type TableHeadProps = React.ComponentProps<"th">;
declare function TableHead({ className, ...props }: TableHeadProps): React.JSX.Element;
type TableCellProps = React.ComponentProps<"td">;
declare function TableCell({ className, ...props }: TableCellProps): React.JSX.Element;
type TableCaptionProps = React.ComponentProps<"caption">;
declare function TableCaption({ className, ...props }: TableCaptionProps): React.JSX.Element;
export { Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps };