-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid.tsx
36 lines (32 loc) · 913 Bytes
/
grid.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import {ReactElement} from "react";
import {Gradient} from "./gradient";
import {Color, lerpColor, toCssColor} from "../../shared/color";
type Props = {
topLeft: Color;
topRight: Color;
bottomLeft: Color;
bottomRight: Color;
steps: number;
};
export function Grid({
topLeft,
topRight,
bottomLeft,
bottomRight,
steps,
}: Props) {
const gradients: Array<ReactElement<typeof Gradient>> = [];
for (let i = 0; i < steps; i++) {
const start = lerpColor(topLeft, bottomLeft, i / steps);
const stop = lerpColor(topRight, bottomRight, i / steps);
const key = `${toCssColor(start)}-${toCssColor(stop)}`;
gradients.push(
<Gradient key={key} start={start} stop={stop} steps={steps} />,
);
}
return (
<div style={{display: "flex", flexDirection: "column"}}>
{gradients}
</div>
);
}