react-pdf-builder
Version:
Build beautiful PDF documents in React.
11 lines (10 loc) • 484 B
TypeScript
import React from 'react';
import { EllipseShapeProps } from './EllipseShape';
export interface CircleShapeProps extends EllipseShapeProps {
/** Optional. Width and height of circle in points. */
size?: number;
}
/**
* Read the [full documentation for CircleShape](https://justinmahar.github.io/react-pdf-builder/?path=/docs/documentation-components-shapes-circleshape--docs)
*/
export declare const CircleShape: ({ size, ...props }: CircleShapeProps) => React.JSX.Element;