UNPKG

@blockscout/ui-toolkit

Version:

A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects

13 lines (12 loc) 708 B
import { CheckboxGroupProps as ChakraCheckboxGroupProps, Checkbox as ChakraCheckbox } from '@chakra-ui/react'; import * as React from 'react'; export interface CheckboxProps extends ChakraCheckbox.RootProps { icon?: React.ReactNode; inputProps?: React.InputHTMLAttributes<HTMLInputElement>; rootRef?: React.Ref<HTMLLabelElement>; } export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>; export interface CheckboxGroupProps extends ChakraCheckboxGroupProps { orientation?: 'vertical' | 'horizontal'; } export declare const CheckboxGroup: React.ForwardRefExoticComponent<CheckboxGroupProps & React.RefAttributes<HTMLDivElement>>;