UNPKG

pouncejs

Version:

A collection of UI components from Panther labs

6 lines (5 loc) 257 B
import { BoxProps } from '../Box'; import { RadioProps } from './Radio'; declare type UseRadioStyles = Pick<RadioProps, 'invalid' | 'checked'>; declare const useRadioStyles: ({ invalid, checked }: UseRadioStyles) => BoxProps; export default useRadioStyles;