@navinc/base-react-components
Version:
Nav's Pattern Library
28 lines (27 loc) • 903 B
TypeScript
export function Radio({ asideContent, autoFocus, checkedBackgroundColor, children, label, className, checked, disabled, hasBorder, isInvalid, ...props }: {
[x: string]: any;
asideContent: any;
autoFocus: any;
checkedBackgroundColor: any;
children: any;
label: any;
className: any;
checked: any;
disabled: any;
hasBorder: any;
isInvalid: any;
}): JSX.Element;
export default StyledRadio;
declare const StyledRadio: import("styled-components").StyledComponent<({ asideContent, autoFocus, checkedBackgroundColor, children, label, className, checked, disabled, hasBorder, isInvalid, ...props }: {
[x: string]: any;
asideContent: any;
autoFocus: any;
checkedBackgroundColor: any;
children: any;
label: any;
className: any;
checked: any;
disabled: any;
hasBorder: any;
isInvalid: any;
}) => JSX.Element, any, {}, never>;