Skip to content

Commit 7e6c1df

Browse files
committed
feat(Developing)
1 parent cfe31a5 commit 7e6c1df

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

src/components/Developing.tsx

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
export const Developing = () => {
2+
return (
3+
<div className="h-56 rounded-[inherit] inset-0 overflow-hidden opacity-60">
4+
<svg width="100%" height="100%">
5+
<defs>
6+
<pattern
7+
id="stripe-pattern"
8+
width="50"
9+
height="50"
10+
patternUnits="userSpaceOnUse"
11+
>
12+
<rect width="25" height="50" fill="#f5be41" />
13+
<rect x="25" width="25" height="50" fill="#efa139" />
14+
<animateTransform
15+
attributeName="patternTransform"
16+
attributeType="XML"
17+
type="rotate"
18+
from="-30"
19+
to="-30"
20+
dur="2s"
21+
repeatCount="indefinite"
22+
additive="sum"
23+
/>
24+
<animateTransform
25+
attributeName="patternTransform"
26+
attributeType="XML"
27+
type="translate"
28+
from="0 0"
29+
to="50 0"
30+
dur="2s"
31+
repeatCount="indefinite"
32+
additive="sum"
33+
/>
34+
</pattern>
35+
</defs>
36+
<rect width="100%" height="100%" fill="url(#stripe-pattern)" />
37+
</svg>
38+
</div>
39+
)
40+
}

0 commit comments

Comments
 (0)