UNPKG

@dabapps/roe

Version:

A Collection of React Components for Project Development

14 lines (12 loc) 262 B
export interface ComponentProps { /** * Set the component to render a different element type. */ component?: string; } export interface BaseTableCellProps extends ComponentProps { /** * Set an exact cell width. */ width?: number | string; }