UNPKG

@zag-js/checkbox

Version:

Core logic for the checkbox widget implemented as a state machine

9 lines (6 loc) 320 B
import { CheckboxProps } from './checkbox.types.js'; import '@zag-js/types'; import '@zag-js/core'; declare const props: (keyof CheckboxProps)[]; declare const splitProps: <Props extends Partial<CheckboxProps>>(props: Props) => [Partial<CheckboxProps>, Omit<Props, keyof CheckboxProps>]; export { props, splitProps };