1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-08-22 13:42:50 +02:00

Add square placeholder

This commit is contained in:
Phuoc Nguyen
2019-11-16 23:11:35 +07:00
parent 54e03e89f6
commit 5f1ef07da9
3 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
const Square = ({ size = 8 }) => {
return (
<div className="w-100 h-100 bg-black-30 br1" />
);
};
export default Square;