import React from 'react'; import { Checkbox as RACCheckbox, type CheckboxProps as RACCheckboxProps, } from 'react-aria-components'; interface CheckboxProps extends RACCheckboxProps { label?: string; } export function Checkbox({ children, ...props }: CheckboxProps) { return ( {({ isIndeterminate }) => ( <>
{props.label || children} )}
); }