UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

13 lines (12 loc) 681 B
import { ForwardedRef, ReactElement } from 'react'; import { LabelProperties } from '../label'; export type CheckboxPanelProperties = LabelProperties; /** * Container to be used with checkbox component to add border and background color. * @docs {@link https://design.visa.com/react/components/Checkbox | See Docs} */ declare const _default: <HTMLElementType = HTMLLabelElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & LabelProperties) => ReactElement; export default _default;