UNPKG

mod-arch-shared

Version:

Shared UI components and utilities for modular architecture micro-frontend projects

12 lines 381 B
import * as React from 'react'; import { Td } from '@patternfly/react-table'; type CheckboxTrProps = { id: string; isChecked: boolean | null; onToggle: () => void; isDisabled?: boolean; tooltip?: string; } & React.ComponentProps<typeof Td>; declare const CheckboxTd: React.FC<CheckboxTrProps>; export default CheckboxTd; //# sourceMappingURL=CheckboxTd.d.ts.map