@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
20 lines (18 loc) • 447 B
text/typescript
import { InputHTMLAttributes } from "react";
import { FormFieldProps } from "../useFormField";
export interface RadioProps
extends Omit<FormFieldProps, "error" | "errorId" | "readOnly">,
Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "value"> {
/**
* Radio label.
*/
children: React.ReactNode;
/**
* Radio value.
*/
value: any;
/**
* Adds a description to extend the labeling.
*/
description?: string;
}