1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-22 18:26:39 +02:00
Files
csslayout/client/placeholders/Line.jsx
2019-11-15 17:26:10 +07:00

15 lines
254 B
JavaScript

import React from 'react';
const Line = ({ size }) => {
const h = (size === 'medium' ? '2px' : '1px');
return (
<div
className="w-100 bg-black-30"
style={{ height: h }}
/>
);
};
export default Line;