import React from 'react'; import Center from './Center'; import type { ISquareProps } from './props'; const Square = ({ style, size, ...props }: ISquareProps) => { return (
); }; export default Square;