@codegouvfr/react-dsfr
Version:
French State Design System React integration library
11 lines (10 loc) • 483 B
TypeScript
import React from "react";
import { type FieldsetProps } from "./shared/Fieldset";
export type RadioButtonsProps = FieldsetProps.Common & {
name?: string;
};
/** @see <https://components.react-dsfr.codegouv.studio/?path=/docs/components-radiobutton> */
export declare const RadioButtons: React.MemoExoticComponent<React.ForwardRefExoticComponent<FieldsetProps.Common & {
name?: string | undefined;
} & React.RefAttributes<HTMLFieldSetElement>>>;
export default RadioButtons;