@cimpress/react-components
Version:
React components to support the MCP styleguide
15 lines • 706 B
TypeScript
import React from 'react';
export interface CircleProps {
/** The class name of the circle's svg, defaults to 'default'. */
className?: string;
/** The fill property of the circle's svg, defaults to ''. */
color?: string;
/** The width and height properties of the circle's svg, defaults to '14'. */
width?: number;
/** The stroke property of the circle's svg, defaults to alloy color. */
outline?: string;
/** The strokeWidth property of the circle's svg, defaults to '1px'. */
outlineWidth?: string;
}
export declare const Circle: ({ className, color, width, outline, outlineWidth, ...rest }: CircleProps) => React.JSX.Element;
//# sourceMappingURL=Circle.d.ts.map