mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-22 18:26:39 +02:00
15 lines
254 B
JavaScript
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;
|