mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 18:39:55 +02:00
86 lines
3.2 KiB
TypeScript
86 lines
3.2 KiB
TypeScript
import type { SVGProps } from "react";
|
|
|
|
export type IconName =
|
|
| "arrow"
|
|
| "devices"
|
|
| "folder"
|
|
| "github"
|
|
| "lock"
|
|
| "qr"
|
|
| "shield"
|
|
| "verified";
|
|
|
|
type IconProps = SVGProps<SVGSVGElement> & {
|
|
name: IconName;
|
|
};
|
|
|
|
export function Icon({ name, ...props }: IconProps) {
|
|
const paths: Record<IconName, React.ReactNode> = {
|
|
arrow: (
|
|
<>
|
|
<path d="M5 12h14" />
|
|
<path d="m14 7 5 5-5 5" />
|
|
</>
|
|
),
|
|
devices: (
|
|
<>
|
|
<rect x="3" y="5" width="13" height="10" rx="2" />
|
|
<path d="M7 19h5M9.5 15v4" />
|
|
<rect x="17" y="8" width="4" height="10" rx="1" />
|
|
</>
|
|
),
|
|
folder: (
|
|
<path d="M3 7.5A2.5 2.5 0 0 1 5.5 5H10l2 2h6.5A2.5 2.5 0 0 1 21 9.5v7a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 16.5z" />
|
|
),
|
|
github: (
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M8.5 2.22168C5.23312 2.22168 2.58496 4.87398 2.58496 8.14677C2.58496 10.7642 4.27962 12.9853 6.63026 13.7684C6.92601 13.8228 7.03366 13.6401 7.03366 13.4827C7.03366 13.3425 7.02893 12.9693 7.02597 12.4754C5.38041 12.8333 5.0332 11.681 5.0332 11.681C4.76465 10.996 4.37663 10.8139 4.37663 10.8139C3.83954 10.4471 4.41744 10.4542 4.41744 10.4542C5.01072 10.4956 5.32303 11.0647 5.32303 11.0647C5.85065 11.9697 6.70774 11.7082 7.04431 11.5568C7.09873 11.1741 7.25134 10.9132 7.42051 10.7654C6.10737 10.6157 4.72621 10.107 4.72621 7.83683C4.72621 7.19031 4.95689 6.66092 5.33486 6.24686C5.27394 6.09721 5.07105 5.49447 5.39283 4.67938C5.39283 4.67938 5.88969 4.51967 7.01947 5.28626C7.502 5.15466 7.99985 5.08763 8.5 5.08692C9.00278 5.08929 9.50851 5.15495 9.98113 5.28626C11.1103 4.51967 11.606 4.67879 11.606 4.67879C11.9289 5.49447 11.7255 6.09721 11.6651 6.24686C12.0437 6.66092 12.2732 7.19031 12.2732 7.83683C12.2732 10.1129 10.8897 10.6139 9.5724 10.7606C9.78475 10.9434 9.97344 11.3048 9.97344 11.8579C9.97344 12.6493 9.96634 13.2887 9.96634 13.4827C9.96634 13.6413 10.0728 13.8258 10.3733 13.7678C11.5512 13.3728 12.5751 12.6175 13.3003 11.6089C14.0256 10.6002 14.4155 9.38912 14.415 8.14677C14.415 4.87398 11.7663 2.22168 8.5 2.22168Z"
|
|
fill="currentColor"
|
|
/>
|
|
),
|
|
lock: (
|
|
<>
|
|
<rect x="5" y="10" width="14" height="11" rx="3" />
|
|
<path d="M8 10V7a4 4 0 0 1 8 0v3M12 14v3" />
|
|
</>
|
|
),
|
|
qr: (
|
|
<>
|
|
<rect x="3" y="3" width="7" height="7" rx="1" />
|
|
<rect x="14" y="3" width="7" height="7" rx="1" />
|
|
<rect x="3" y="14" width="7" height="7" rx="1" />
|
|
<path d="M14 14h3v3h-3zM18 18h3v3h-3zM18 13h3M13 19h3v2" />
|
|
</>
|
|
),
|
|
shield: (
|
|
<>
|
|
<path d="M12 3 4.5 6v5.5c0 4.8 3.2 8.1 7.5 9.5 4.3-1.4 7.5-4.7 7.5-9.5V6z" />
|
|
<path d="m8.5 12 2.2 2.2 4.8-5" />
|
|
</>
|
|
),
|
|
verified: (
|
|
<>
|
|
<path d="m12 3 2 2.1 2.9-.1.1 2.9 2 2.1-2 2.1-.1 2.9-2.9-.1-2 2.1-2-2.1-2.9.1-.1-2.9-2-2.1 2-2.1.1-2.9 2.9.1z" />
|
|
<path d="m9 10 2 2 4-4" />
|
|
</>
|
|
),
|
|
};
|
|
|
|
return (
|
|
<svg
|
|
viewBox={name === "github" ? "0 0 17 16" : "0 0 24 24"}
|
|
fill="none"
|
|
stroke={name === "github" ? "none" : "currentColor"}
|
|
strokeWidth="1.8"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
aria-hidden="true"
|
|
{...props}
|
|
>
|
|
{paths[name]}
|
|
</svg>
|
|
);
|
|
}
|