UNPKG

319 BTypeScriptView Raw
1import { type BoxProps } from "./box";
2export interface SquareProps extends BoxProps {
3 /**
4 * The size (width and height) of the square
5 */
6 size?: BoxProps["boxSize"];
7}
8export declare const Square: import("react").ForwardRefExoticComponent<SquareProps & import("react").RefAttributes<HTMLDivElement>>;