mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 02:36:11 +02:00
14 lines
235 B
TypeScript
14 lines
235 B
TypeScript
import React from 'react';
|
|
|
|
interface SquareProps {
|
|
size?: number;
|
|
}
|
|
|
|
const Square: React.FC<SquareProps> = ({ size = 8 }) => {
|
|
return (
|
|
<div className="w-100 h-100 bg-black-30 br2" />
|
|
);
|
|
};
|
|
|
|
export default Square;
|