export const BoxSvg = () => {
  return (
    <svg
      width="100"
      height="60"
      viewBox="0 0 100 60"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <rect width="100" height="60" rx="4" fill="var(--surface-1)" />
      <path
        d="M94.5 0.5H96C97.933 0.5 99.5 2.067 99.5 4V5.5"
        stroke="#4765FF"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
      <path
        d="M99.5 54.5L99.5 56C99.5 57.933 97.933 59.5 96 59.5L94.5 59.5"
        stroke="#4765FF"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
      <path
        d="M5.5 59.5L4 59.5C2.067 59.5 0.5 57.933 0.5 56L0.5 54.5"
        stroke="#4765FF"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
      <path
        d="M0.5 5.5L0.5 4C0.5 2.067 2.067 0.5 4 0.5L5.5 0.500001"
        stroke="#4765FF"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </svg>
  );
};
