UNPKG

@ntragas/pouncejstest

Version:

A collection of UI components from Panther labs

6 lines (5 loc) 311 B
import { BoxProps } from '../Box'; import { CheckboxProps } from './Checkbox'; declare type UseCheckboxStyles = Pick<CheckboxProps, 'invalid' | 'checked' | 'indeterminate'>; declare const useCheckboxStyles: ({ invalid, checked, indeterminate }: UseCheckboxStyles) => BoxProps; export default useCheckboxStyles;