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