UNPKG

react-base-guide

Version:

react ui components

11 lines (10 loc) 243 B
import { StyleProps } from "../../utils/add-custom-style"; interface TableProps { id?: string; name?: string; className?: string; head?: object; body?: any[]; styled?: StyleProps; } export default TableProps;