@retailmenot/anchor
Version:
A React UI Library by RetailMeNot
18 lines (17 loc) • 496 B
TypeScript
import * as React from 'react';
import { SpaceProps } from '@xstyled/system';
interface CheckboxProps extends SpaceProps {
className?: string;
id?: string;
htmlFor?: string;
backgroundColor?: string;
checked?: boolean;
disabled?: boolean;
name?: string;
size?: string;
color?: string;
inputProps?: any;
onChange?: (arg: any) => any;
}
export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<any>>;
export {};