File tree 3 files changed +27
-13
lines changed
3 files changed +27
-13
lines changed Original file line number Diff line number Diff line change @@ -7,28 +7,28 @@ export function SearchIcon(props: SVGProps<SVGSVGElement>): JSX.Element {
7
7
return (
8
8
< svg
9
9
xmlns = 'http://www.w3.org/2000/svg'
10
- width = { 20 }
11
- height = { 20 }
10
+ width = { 24 }
11
+ height = { 25 }
12
12
fill = 'none'
13
13
{ ...props }
14
14
>
15
15
< mask
16
16
id = 'search_svg__a'
17
- width = { 20 }
18
- height = { 20 }
17
+ width = { 24 }
18
+ height = { 25 }
19
19
x = { 0 }
20
20
y = { 0 }
21
21
maskUnits = 'userSpaceOnUse'
22
22
style = { {
23
23
maskType : 'alpha' ,
24
24
} }
25
25
>
26
- < path fill = '#D9D9D9' d = 'M0 0h20v20H0z ' />
26
+ < path fill = '#D9D9D9' d = 'M0 .988h24v24H0z ' />
27
27
</ mask >
28
28
< g mask = 'url(#search_svg__a)' >
29
29
< path
30
- fill = '#6E7179 '
31
- d = 'm16.333 17.5-5.25-5.25a5.08 5.08 0 0 1-3.167 1.083c -1.513 0-2.794-.524-3.843 -1.572C3.024 10.71 2.5 9.43 2.5 7.917c0 -1.514.524-2.796 1.573-3.845C5.122 3.024 6.403 2.5 7.917 2.5c1.514 0 2.795.524 3.844 1.572 1.048 1.05 1.572 2.33 1.572 3.845a5.08 5.08 0 0 1-1.083 3.166l5.25 5.25 -1.167 1.167Zm-8.416-5.833c1.041 0 1.927-.365 2.656 -1.094.73-.73 1.094-1.615 1.094-2.656 0-1.042-.365-1.928 -1.094-2.657-.73-.729 -1.615 -1.093-2.656 -1.093 -1.042 0-1.928.364-2.657 1.093-.729.73-1.093 1.615-1.093 2.657 0 1.041.364 1.927 1.093 2.656.73.73 1.615 1.094 2.657 1.094Z '
30
+ fill = '#232B3A '
31
+ d = 'm19.6 21.988-6.3-6.3a6.096 6.096 0 0 1-3.8 1.3c -1.817 0-3.354-.629-4.612 -1.887C3.629 13.843 3 12.305 3 10.488c0 -1.816.63-3.354 1.888-4.613C6.146 4.617 7.683 3.988 9.5 3.988c1.817 0 3.354.63 4.613 1.887C15.371 7.134 16 8.672 16 10.488a6.096 6.096 0 0 1-1.3 3.8l6.3 6.3 -1.4 1.4Zm-10.1-7c1.25 0 2.313-.437 3.188 -1.312S14 11.738 14 10.488c0-1.25-.437-2.312 -1.312-3.188-.875-.874 -1.938 -1.312-3.188 -1.312 -1.25 0-2.313.438-3.188 1.312C5.437 8.176 5 9.238 5 10.488c0 1.25.437 2.313 1.312 3.188S8.25 14.988 9.5 14.988Z '
32
32
/>
33
33
</ g >
34
34
</ svg >
Original file line number Diff line number Diff line change 1
1
@use ' ./colors' ;
2
2
@use ' ./typography' ;
3
3
4
+ @mixin search-text-field {
5
+ .seam-search-text-field {
6
+ svg {
7
+ * {
8
+ fill : colors .$text-gray-2 ;
9
+ }
10
+ }
11
+ }
12
+ }
13
+
4
14
@mixin text-field {
5
15
.seam-text-field {
6
16
> .seam-main {
17
+ background : colors .$white ;
7
18
border : 1px solid colors .$text-gray-3 ;
8
19
border-radius : 8px ;
9
20
display : flex ;
24
35
border : 0 ;
25
36
width : 100% ;
26
37
border-radius : 8px ;
38
+ font-size : 16px ;
27
39
28
40
@include typography .font-family ;
29
41
92
104
93
105
> .seam-text-field-input {
94
106
height : 48px ;
95
- font-size : 16px ;
96
107
}
97
108
}
98
109
}
111
122
112
123
@mixin all {
113
124
@include text-field ;
125
+ @include search-text-field ;
114
126
}
You can’t perform that action at this time.
0 commit comments