UNPKG

@cimpress/react-components

Version:
15 lines 705 B
/// <reference types="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) => JSX.Element; //# sourceMappingURL=Circle.d.ts.map