@visa/nova-react
Version:
Visa Product Design System Nova React library
22 lines (21 loc) • 812 B
TypeScript
import { ElementType, ForwardedRef } from 'react';
export type RadioProperties = {
/** @ignore */
children?: never;
/** @ignore */
className?: string;
/** Tag of Component */
tag?: ElementType;
};
/**
* Interactive elements that allow users to select a single option from a list.
* @docs {@link https://design.visa.com/react/components/radio | See Docs}
* @vgar TODO
* @wcag TODO
* @related radio-panel
*/
declare const _default: <HTMLElementType = HTMLInputElement>(props: {
children?: import("react").ReactNode | import("react").ReactNode[];
ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & RadioProperties) => import("react").ReactElement;
export default _default;