source: frontend/src/Components/TransportDetails/Line.js@ e6c2521

Last change on this file since e6c2521 was e6c2521, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

images upload/download impl, other fixes

  • Property mode set to 100644
File size: 306 bytes
Line 
1import React from "react";
2
3const Line = (props) => {
4 const left = props.left === "true" ? "1.8rem" : "1.85rem";
5 return (<>
6 <div style={{borderLeft: "5px solid #159895", height: "3em", marginLeft: left, marginTop: "-1.4rem", marginBottom: "-1.4rem"}}></div>
7 </>)
8}
9
10export default Line;
Note: See TracBrowser for help on using the repository browser.