import React from 'react'; const Rectangle = ({ height = 8 }) => { return (
); }; export default Rectangle;