@retailmenot/anchor
Version:
A React UI Library by RetailMeNot
19 lines (18 loc) • 529 B
TypeScript
import * as React from 'react';
import { SpaceProps } from '@xstyled/system';
interface RadioProps extends SpaceProps, React.HTMLAttributes<any> {
children?: any;
className?: string;
id?: string;
checked?: boolean;
disabled?: boolean;
value?: string;
name?: string;
size?: string;
fillSize?: string;
fillColor?: string;
inputProps?: any;
onChange?: (arg: any) => any;
}
export declare const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<any>>;
export {};