mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
13 lines
238 B
JavaScript
13 lines
238 B
JavaScript
import React from 'react';
|
|
|
|
const Rectangle = ({ height = 8 }) => {
|
|
return (
|
|
<div
|
|
className="w-100 bg-black-30 br-pill"
|
|
style={{ height: `${height}px` }}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default Rectangle;
|