UNPKG

@payfit/unity-components

Version:

11 lines (10 loc) 420 B
type EnabledState = 'enabled' | 'disabled' | 'readonly'; type ValidationState = 'valid' | 'invalid'; export type RadioState = EnabledState | ValidationState; export interface RadioIndicatorProps { isSelected: boolean; state: RadioState; className?: string; } export declare const RadioIndicator: ({ isSelected, state, className, }: RadioIndicatorProps) => import("react/jsx-runtime").JSX.Element; export {};