UNPKG

@geist-ui/react

Version:

Modern and minimalist React UI library.

14 lines (13 loc) 520 B
import React from 'react'; interface Props { value: string[]; disabled?: boolean; onChange?: (values: string[]) => void; className?: string; } declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>; export declare type CheckboxGroupProps = Props & NativeAttrs; declare const CheckboxGroup: React.ForwardRefExoticComponent<Props & NativeAttrs & { children?: React.ReactNode; } & import("../use-scaleable").ScaleableProps & React.RefAttributes<unknown>>; export default CheckboxGroup;