mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-11 12:58:35 +03:00
16 lines
288 B
JavaScript
16 lines
288 B
JavaScript
import React from 'react';
|
|
|
|
const TimelineClip = ({ dims }) => (
|
|
<clipPath id="clip">
|
|
<rect
|
|
x="120"
|
|
y="0"
|
|
width={dims.width - dims.margin_left - dims.width_controls}
|
|
height={dims.height - 25}
|
|
>
|
|
</rect>
|
|
</clipPath>
|
|
);
|
|
|
|
export default TimelineClip;
|