import * as React from "react"; import { CaptionElement, CaptionProps, CellElement, CellProps, HeadElement, HeadProps, RootElement, RootProps, RowElement, RowProps, SectionElement, SectionProps, } from "./Table.props"; import { baseVariants } from "./variants"; const { rootWrapperVariants, rootTableVariants, headerVariants, bodyVariants, footerVariants, rowVariants, headVariants, cellVariants, captionVariants, } = baseVariants(); const Root = React.forwardRef(function EloquentTable( { className, ...props }, ref ) { return (
); }); const Header = React.forwardRef( function EloquentTableHeader({ className, ...props }, ref) { return ( ); } ); const Body = React.forwardRef( function EloquentTableBody({ className, ...props }, ref) { return ( ); } ); const Footer = React.forwardRef( function EloquentTableFooter({ className, ...props }, ref) { return ( ); } ); const Row = React.forwardRef(function EloquentTableRow( { className, ...props }, ref ) { return ; }); const Head = React.forwardRef( function EloquentTableHead({ className, ...props }, ref) { return
; } ); const Cell = React.forwardRef( function EloquentTableCell({ className, ...props }, ref) { return ; } ); const Caption = React.forwardRef( function EloquentTableCaption({ className, ...props }, ref) { return (
); } ); export const Table = { Root, Header, Body, Footer, Head, Row, Cell, Caption, };