UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library. Compatible with React ^19.

13 lines (12 loc) 499 B
import { type ReactElement } from 'react'; import { type 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/components/checkbox/?code_library=react | See Docs} */ declare const CheckboxPanel: { ({ className, ...remainingProps }: CheckboxPanelProperties): ReactElement; displayName: string; }; export default CheckboxPanel;