/** * A collection of popular layouts and patterns made with CSS (https://csslayout.io) * (c) 2019 - 2020 Nguyen Huu Phuoc */ import React from 'react'; interface SquareProps { backgroundColor?: string; size?: number; } const Square: React.FC = ({ backgroundColor = 'rgba(0, 0, 0, 0.3)', size = 8, }) => { return (
); }; export default Square;