import type { FC } from 'react'; import './Square.less'; export interface SquareProps { /** * 主色(可选) * @default #1890ff */ color?: string; } declare const Square: FC; export default Square;