UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

10 lines (9 loc) 345 B
import React from 'react'; import { ScrollbarShadowsProps } from '@/ui/components/scrollbar'; export interface TableProps extends Omit<React.ComponentProps<'table'>, 'ref'> { scrollShadows?: ScrollbarShadowsProps; fullWidth?: boolean; } export declare const Table: React.FC<TableProps>; export * from './styled'; export * from './cell';