converted to components

This commit is contained in:
Laux Dev
2026-02-27 16:07:26 +08:00
parent 2e772b2044
commit ce8649733f
15 changed files with 338 additions and 430 deletions

View File

@@ -0,0 +1,24 @@
import React from "react";
const CredentialsIcon = (props) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
{...props}
>
<path
d="M4.03125 5.90625L5.4375 7.3125L7.78125 4.96875M4.03125 11.5312L5.4375 12.9375L7.78125 10.5938M4.03125 17.1562L5.4375 18.5625L7.78125 16.2188M11.0625 6.375H19.5M11.0625 12H19.5M11.0625 17.625H19.5"
stroke="#858699"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default CredentialsIcon;