@payfit/unity-components
Version:
12 lines (11 loc) • 446 B
TypeScript
type EnabledState = 'enabled' | 'disabled' | 'readonly';
type ValidationState = 'valid' | 'invalid';
export type RadioState = EnabledState | ValidationState;
export interface RadioIndicatorProps {
isSelected: boolean;
state: RadioState;
theme: string;
className?: string;
}
export declare const RadioIndicator: ({ isSelected, state, theme, className, }: RadioIndicatorProps) => import("react/jsx-runtime").JSX.Element;
export {};