UNPKG

@wonderflow/react-components

Version:

UI components from Wonderflow's Wanda design system

14 lines 507 B
import { Polymorphic } from '../../..'; import { OptionalColumnTypes } from '../types'; declare type TableCellProps = { collapsed?: OptionalColumnTypes['isCollapsed']; isSorted?: boolean; isSortedDesc?: boolean; align?: OptionalColumnTypes['align']; padding?: boolean; width?: string | number; }; declare type PolymorphicCell = Polymorphic.ForwardRefComponent<'td', TableCellProps>; export declare const TableCell: PolymorphicCell; export {}; //# sourceMappingURL=table-cell.d.ts.map