UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

9 lines (8 loc) 287 B
import React from 'react'; import { TableCellSize } from './types'; export interface TableCellProps extends Omit<React.ComponentProps<'td'>, 'ref'> { size?: TableCellSize; } export declare const TableCell: React.FC<TableCellProps>; export * from './types'; export * from './styled';