UNPKG

@visa/nova-react

Version:

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

12 lines (11 loc) 463 B
import { type LabelProperties } from '../label'; export type RadioPanelProperties = LabelProperties; /** * Container used with a radio component to add a border and background color. * @docs {@link https://design.visa.com/components/radio/?code_library=react | See Docs} */ declare const RadioPanel: { ({ className, ...remainingProps }: RadioPanelProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default RadioPanel;