mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-12 21:38:35 +03:00
15 lines
289 B
JavaScript
15 lines
289 B
JavaScript
import React from "react";
|
|
|
|
const TimelineClip = ({ dims }) => (
|
|
<clipPath id="clip">
|
|
<rect
|
|
x={dims.marginLeft}
|
|
y="0"
|
|
width={dims.width - dims.marginLeft - dims.width_controls}
|
|
height={dims.contentHeight}
|
|
/>
|
|
</clipPath>
|
|
);
|
|
|
|
export default TimelineClip;
|