UNPKG

react-pdf-builder

Version:
11 lines (10 loc) 490 B
import React from 'react'; import { RectangleShapeProps } from './RectangleShape'; export interface SquareShapeProps extends RectangleShapeProps { /** Optional. Width and height of square in points. */ size?: number; } /** * Read the [full documentation for SquareShape](https://justinmahar.github.io/react-pdf-builder/?path=/docs/documentation-components-shapes-squareshape--docs) */ export declare const SquareShape: ({ size, ...props }: SquareShapeProps) => React.JSX.Element;