-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-dots.tsx
119 lines (118 loc) · 6.42 KB
/
custom-dots.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
export interface DotsProps extends React.ComponentPropsWithoutRef<'svg'> {
size?: number;
radius?: number;
}
export function CustomDots({ size = 185, radius = 2.5, ...others }: DotsProps) {
return (
<svg
aria-hidden
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 185 185"
width={size}
height={size}
{...others}
>
<rect width="5" height="5" rx={radius} />
<rect width="5" height="5" x="60" rx={radius} />
<rect width="5" height="5" x="120" rx={radius} />
<rect width="5" height="5" x="20" rx={radius} />
<rect width="5" height="5" x="80" rx={radius} />
<rect width="5" height="5" x="140" rx={radius} />
<rect width="5" height="5" x="40" rx={radius} />
<rect width="5" height="5" x="100" rx={radius} />
<rect width="5" height="5" x="160" rx={radius} />
<rect width="5" height="5" x="180" rx={radius} />
<rect width="5" height="5" y="20" rx={radius} />
<rect width="5" height="5" x="60" y="20" rx={radius} />
<rect width="5" height="5" x="120" y="20" rx={radius} />
<rect width="5" height="5" x="20" y="20" rx={radius} />
<rect width="5" height="5" x="80" y="20" rx={radius} />
<rect width="5" height="5" x="140" y="20" rx={radius} />
<rect width="5" height="5" x="40" y="20" rx={radius} />
<rect width="5" height="5" x="100" y="20" rx={radius} />
<rect width="5" height="5" x="160" y="20" rx={radius} />
<rect width="5" height="5" x="180" y="20" rx={radius} />
<rect width="5" height="5" y="40" rx={radius} />
<rect width="5" height="5" x="60" y="40" rx={radius} />
<rect width="5" height="5" x="120" y="40" rx={radius} />
<rect width="5" height="5" x="20" y="40" rx={radius} />
<rect width="5" height="5" x="80" y="40" rx={radius} />
<rect width="5" height="5" x="140" y="40" rx={radius} />
<rect width="5" height="5" x="40" y="40" rx={radius} />
<rect width="5" height="5" x="100" y="40" rx={radius} />
<rect width="5" height="5" x="160" y="40" rx={radius} />
<rect width="5" height="5" x="180" y="40" rx={radius} />
<rect width="5" height="5" y="60" rx={radius} />
<rect width="5" height="5" x="60" y="60" rx={radius} />
<rect width="5" height="5" x="120" y="60" rx={radius} />
<rect width="5" height="5" x="20" y="60" rx={radius} />
<rect width="5" height="5" x="80" y="60" rx={radius} />
<rect width="5" height="5" x="140" y="60" rx={radius} />
<rect width="5" height="5" x="40" y="60" rx={radius} />
<rect width="5" height="5" x="100" y="60" rx={radius} />
<rect width="5" height="5" x="160" y="60" rx={radius} />
<rect width="5" height="5" x="180" y="60" rx={radius} />
<rect width="5" height="5" y="80" rx={radius} />
<rect width="5" height="5" x="60" y="80" rx={radius} />
<rect width="5" height="5" x="120" y="80" rx={radius} />
<rect width="5" height="5" x="20" y="80" rx={radius} />
<rect width="5" height="5" x="80" y="80" rx={radius} />
<rect width="5" height="5" x="140" y="80" rx={radius} />
<rect width="5" height="5" x="40" y="80" rx={radius} />
<rect width="5" height="5" x="100" y="80" rx={radius} />
<rect width="5" height="5" x="160" y="80" rx={radius} />
<rect width="5" height="5" x="180" y="80" rx={radius} />
<rect width="5" height="5" y="100" rx={radius} />
<rect width="5" height="5" x="60" y="100" rx={radius} />
<rect width="5" height="5" x="120" y="100" rx={radius} />
<rect width="5" height="5" x="20" y="100" rx={radius} />
<rect width="5" height="5" x="80" y="100" rx={radius} />
<rect width="5" height="5" x="140" y="100" rx={radius} />
<rect width="5" height="5" x="40" y="100" rx={radius} />
<rect width="5" height="5" x="100" y="100" rx={radius} />
<rect width="5" height="5" x="160" y="100" rx={radius} />
<rect width="5" height="5" x="180" y="100" rx={radius} />
<rect width="5" height="5" y="120" rx={radius} />
<rect width="5" height="5" x="60" y="120" rx={radius} />
<rect width="5" height="5" x="120" y="120" rx={radius} />
<rect width="5" height="5" x="20" y="120" rx={radius} />
<rect width="5" height="5" x="80" y="120" rx={radius} />
<rect width="5" height="5" x="140" y="120" rx={radius} />
<rect width="5" height="5" x="40" y="120" rx={radius} />
<rect width="5" height="5" x="100" y="120" rx={radius} />
<rect width="5" height="5" x="160" y="120" rx={radius} />
<rect width="5" height="5" x="180" y="120" rx={radius} />
<rect width="5" height="5" y="140" rx={radius} />
<rect width="5" height="5" x="60" y="140" rx={radius} />
<rect width="5" height="5" x="120" y="140" rx={radius} />
<rect width="5" height="5" x="20" y="140" rx={radius} />
<rect width="5" height="5" x="80" y="140" rx={radius} />
<rect width="5" height="5" x="140" y="140" rx={radius} />
<rect width="5" height="5" x="40" y="140" rx={radius} />
<rect width="5" height="5" x="100" y="140" rx={radius} />
<rect width="5" height="5" x="160" y="140" rx={radius} />
<rect width="5" height="5" x="180" y="140" rx={radius} />
<rect width="5" height="5" y="160" rx={radius} />
<rect width="5" height="5" x="60" y="160" rx={radius} />
<rect width="5" height="5" x="120" y="160" rx={radius} />
<rect width="5" height="5" x="20" y="160" rx={radius} />
<rect width="5" height="5" x="80" y="160" rx={radius} />
<rect width="5" height="5" x="140" y="160" rx={radius} />
<rect width="5" height="5" x="40" y="160" rx={radius} />
<rect width="5" height="5" x="100" y="160" rx={radius} />
<rect width="5" height="5" x="160" y="160" rx={radius} />
<rect width="5" height="5" x="180" y="160" rx={radius} />
<rect width="5" height="5" y="180" rx={radius} />
<rect width="5" height="5" x="60" y="180" rx={radius} />
<rect width="5" height="5" x="120" y="180" rx={radius} />
<rect width="5" height="5" x="20" y="180" rx={radius} />
<rect width="5" height="5" x="80" y="180" rx={radius} />
<rect width="5" height="5" x="140" y="180" rx={radius} />
<rect width="5" height="5" x="40" y="180" rx={radius} />
<rect width="5" height="5" x="100" y="180" rx={radius} />
<rect width="5" height="5" x="160" y="180" rx={radius} />
<rect width="5" height="5" x="180" y="180" rx={radius} />
</svg>
);
}