@octopusdeploy/design-system-components
Version:
The design systems component library.
27 lines (26 loc) • 775 B
TypeScript
import type * as React from "react";
interface BooleanRadioButtonProps {
/**
* The value of the radio button.
*/
value: boolean;
/**
* The label of the radio button.
*/
label?: React.ReactNode;
/**
* Controls whether the radio button is the default option.
* The label of a default option will have "(default)" appended to it.
*/
isDefault?: boolean;
/**
* Controls whether the radio button is disabled.
*/
disabled?: boolean;
/**
* The accessible name of the radio button.
*/
accessibleName?: string;
}
export declare function BooleanRadioButton({ isDefault, label, disabled, value, accessibleName }: BooleanRadioButtonProps): import("react/jsx-runtime").JSX.Element;
export {};