export function Console()

in components/icons.tsx [93:135]


export function Console({ size = "24px" }: IconProps) {
  return (
    <svg
      width={size}
      height={size}
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <g
        transform="matrix(
          1 0
          0 1
          1 1
        )"
      >
        <path
          fillRule="nonzero"
          clipRule="nonzero"
          d="M0 0L0 22L22 22L22 0L0 0ZM19 19L3 19L3 3L19 3L19 19Z"
          fill="currentColor"
          opacity="1"
        />
      </g>
      ,
      <g
        transform="matrix(
          1 0
          0 1
          5.9404296875 5.93994140625
        )"
      >
        <path
          fillRule="nonzero"
          clipRule="nonzero"
          d="M2.12 9.12L6.68 4.56L2.12 0L0 2.12L2.44 4.56L0 7L2.12 9.12Z"
          fill="currentColor"
          opacity="1"
        />
      </g>
    </svg>
  );
}