import type { SVGProps } from "react"; export type IconName = | "arrow" | "devices" | "folder" | "github" | "lock" | "qr" | "shield" | "verified"; type IconProps = SVGProps & { name: IconName; }; export function Icon({ name, ...props }: IconProps) { const paths: Record = { arrow: ( <> ), devices: ( <> ), folder: ( ), github: ( ), lock: ( <> ), qr: ( <> ), shield: ( <> ), verified: ( <> ), }; return ( ); }