import React from "react";

const SquareIcon = () => (
  <svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
    <rect x="0.5" y="0.5" width="59" height="59" rx="14.5" stroke="#F3F3F3" />
    <rect
      x="10"
      y="50"
      width="40"
      height="40"
      rx="5"
      transform="rotate(-90 10 50)"
      fill="currentColor"
    />
  </svg>
);

export default SquareIcon;
