@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
17 lines (16 loc) • 467 B
TypeScript
import { InputHTMLAttributes } from "react";
import { FormFieldProps } from "../useFormField.js";
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;
}