@cimpress/react-components
Version:
React components to support the MCP styleguide
13 lines • 508 B
TypeScript
import React from '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;
/** Custom class applied to the base element */
className?: string;
}
export declare const RadioIcon: (props: RadioIconProps) => React.JSX.Element;
//# sourceMappingURL=RadioIcon.d.ts.map