UNPKG

@cimpress/react-components

Version:
17 lines 802 B
import React from 'react'; export interface HalfCircleProps { /** The class name of the svg, defaults to 'default'. */ className?: string; /** The fill property of the path, defaults to ''. */ color?: string; /** The fill property of the path, defaults to 'white'. */ backgroundColor?: string; /** The width and height properties of the svg, defaults to '14'. */ width?: number; /** The stroke property of the circle, defaults to alloy color. */ outline?: string; /** The rotation direction, defaults to 'left'. */ direction?: 'top' | 'left' | 'bottom' | 'right'; } export declare const HalfCircle: ({ className, color, backgroundColor, width, outline, direction, ...rest }: HalfCircleProps) => React.JSX.Element; //# sourceMappingURL=HalfCircle.d.ts.map