File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments