Sha256: 587461a9e6e0bb97ac296732f3e4dca08d7bba93e621c5ec10ab1dde75e92bcc
Contents?: true
Size: 600 Bytes
Versions: 17
Compression:
Stored size: 600 Bytes
Contents
import { createStyles, withStyles, WithStyles } from '@material-ui/core/styles'; import TableCell from '@material-ui/core/TableCell'; import * as React from 'react'; const styles = createStyles({ property: { padding: "4px 16px 4px 8px" } }); interface ITableCellProps extends WithStyles<typeof styles> { children: string | number | null | React.ReactNode | React.ReactNode[], } const SchedulableRecordTableCell = withStyles(styles)((props: ITableCellProps) => ( <TableCell className={props.classes.property}>{props.children}</TableCell> )); export default SchedulableRecordTableCell;
Version data entries
17 entries across 17 versions & 1 rubygems