UNPKG

@cimpress/react-components

Version:
15 lines 586 B
/// <reference types="react" /> export interface RadioIconProps { /** Width and height of the shape, defaults to '16px'. */ size?: string; /** Color of the shape outline. */ color?: string; /** Color of the area inside the outline. Defaults to 'none' (transparent) */ backgroundColor?: string; /** Whether the radio button is selected or not */ selected?: boolean; /** Custom class applied to the base element */ className?: string; } export declare const RadioIcon: (props: RadioIconProps) => JSX.Element; //# sourceMappingURL=RadioIcon.d.ts.map