cenvert to components

This commit is contained in:
Laux Dev
2026-02-27 16:48:31 +08:00
parent 67d9ebf11f
commit 056a106990
3 changed files with 52 additions and 30 deletions

View File

@@ -0,0 +1,24 @@
import React from "react";
const ToastCloseIcon = (props) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
{...props}
>
<path
d="M15 5L5 15M5 5L15 15"
stroke="#016730"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default ToastCloseIcon;