Skip to content

Commit 1656e65

Browse files
authored
refactor(component): update test icon (#1549)
1 parent 22015b9 commit 1656e65

File tree

2 files changed

+20
-13
lines changed

2 files changed

+20
-13
lines changed

packages/flat-components/src/components/FlatIcons/icons/SVGTest.tsx

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,26 @@ export const SVGTest: React.FC<FlatIconProps> = ({ active, className = "", ...re
1515
>
1616
<path
1717
className="flat-icon-stroke-color"
18-
d="M11 16v3m-3 0h6"
18+
d="M12 16V19"
1919
stroke="#5D6066"
2020
strokeLinejoin="round"
2121
strokeWidth="1.25"
22-
></path>
22+
/>
23+
<path
24+
className="flat-icon-stroke-color"
25+
d="M9 19H15"
26+
stroke="#5D6066"
27+
strokeLinejoin="round"
28+
strokeWidth="1.25"
29+
/>
2330
<path
2431
className="flat-icon-fill-color"
25-
d="M17.375 13v1h1.25v-1h-1.25ZM16 15.375H6v1.25h10v-1.25ZM4.625 14V7h-1.25v7h1.25ZM6 5.625h5v-1.25H6v1.25ZM4.625 7c0-.76.616-1.375 1.375-1.375v-1.25A2.625 2.625 0 0 0 3.375 7h1.25ZM6 15.375c-.76 0-1.375-.616-1.375-1.375h-1.25A2.625 2.625 0 0 0 6 16.625v-1.25ZM17.375 14c0 .76-.616 1.375-1.375 1.375v1.25A2.625 2.625 0 0 0 18.625 14h-1.25Z"
32+
d="M18.375 13V14H19.625V13H18.375ZM17 15.375H7V16.625H17V15.375ZM5.625 14V7H4.375V14H5.625ZM7 5.625H12V4.375H7V5.625ZM5.625 7C5.625 6.24061 6.24061 5.625 7 5.625V4.375C5.55025 4.375 4.375 5.55025 4.375 7H5.625ZM7 15.375C6.24061 15.375 5.625 14.7594 5.625 14H4.375C4.375 15.4497 5.55025 16.625 7 16.625V15.375ZM18.375 14C18.375 14.7594 17.7594 15.375 17 15.375V16.625C18.4497 16.625 19.625 15.4497 19.625 14H18.375Z"
2633
fill="#5D6066"
2734
></path>
2835
<path
2936
className="flat-icon-stroke-color"
30-
d="M11 8h3l1-3 2 6 1-3h2"
37+
d="M12 8H15L16 5L18 11L19 8H21"
3138
stroke="#5D6066"
3239
strokeLinejoin="round"
3340
strokeWidth="1.25"

packages/flat-components/src/components/FlatIcons/icons/SVGTestFilled.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,25 @@ export const SVGTestFilled: React.FC<FlatIconProps> = ({
1919
>
2020
<path
2121
className="flat-icon-stroke-color"
22-
d="M11 16V19"
23-
stroke="#5D6066"
24-
strokeLinejoin="round"
25-
strokeWidth="1.25"
26-
/>
27-
<path
28-
className="flat-icon-stroke-color"
29-
d="M8 19H14"
22+
d="M12 16V19"
3023
stroke="#5D6066"
3124
strokeLinejoin="round"
3225
strokeWidth="1.25"
3326
/>
3427
<path
3528
className="flat-icon-stroke-color flat-icon-fill-color"
3629
clipRule="evenodd"
37-
d="M3.375 7C3.375 5.55025 4.55025 4.375 6 4.375H15C14.731 4.375 14.4921 4.54714 14.4071 4.80236L13.5495 7.375H11V8.625H14C14.269 8.625 14.5079 8.45286 14.5929 8.19764L15 6.97642L16.4071 11.1976C16.4921 11.4529 16.731 11.625 17 11.625C17.269 11.625 17.5079 11.4529 17.5929 11.1976L18.4505 8.625H18.625V14C18.625 15.4497 17.4497 16.625 16 16.625H6C4.55025 16.625 3.375 15.4497 3.375 14V7ZM18.625 7.375H18C17.731 7.375 17.4921 7.54714 17.4071 7.80236L17 9.02358L15.5929 4.80236C15.5079 4.54714 15.269 4.375 15 4.375H16C17.4497 4.375 18.625 5.55025 18.625 7V7.375Z"
30+
d="M7 4.375C5.55025 4.375 4.375 5.55025 4.375 7V14C4.375 15.4497 5.55025 16.625 7 16.625H17C18.4497 16.625 19.625 15.4497 19.625 14V7C19.625 5.55025 18.4497 4.375 17 4.375H7Z"
3831
fill="#5D6066"
3932
fillRule="evenodd"
4033
/>
34+
<path
35+
className="flat-icon-stroke-color"
36+
d="M9 19H15"
37+
stroke="#5D6066"
38+
strokeLinejoin="round"
39+
strokeWidth="1.25"
40+
/>
4141
</svg>
4242
);
4343
};

0 commit comments

Comments
 (0)