type PFRDotProps = {
  width?: number;
  height?: number;
};

function PFRDot({ width = 100, height = 100 }: PFRDotProps) {
  return (
    <svg
      height={height}
      role="img"
      width={width}
      xmlns="http://www.w3.org/2000/svg"
    >
      <circle cx="50" cy="50" fill="#00B0FF" r="20" />
    </svg>
  );
}

export default PFRDot;
