1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-08-06 22:26:33 +02:00

Add helper placeholers

This commit is contained in:
Phuoc Nguyen
2019-11-15 14:11:41 +07:00
parent be062f8f81
commit 1f437af408
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
const Dot = () => {
return (
<div className="bg-black-30 br-pill w1 h1" />
);
};
export default Dot;

View File

@@ -0,0 +1,17 @@
import React from 'react';
const Frame = ({ children }) => {
return (
<div
className="ba b--black-30 br2"
style={{
height: '100px',
width: '100px',
}}
>
{children}
</div>
);
};
export default Frame;

View File

@@ -0,0 +1,12 @@
import React from 'react';
const Line = () => {
return (
<div
className="w-100 bg-black-30"
style={{ height: '1px' }}
/>
);
};
export default Line;