interface IconProps {
  className?: string;
  width?: number;
  height?: number;
  fill?: string;
}

export default function WordFocusIcon({
  className = 'w-[32px] h-[32px]',
  width,
  height,
  fill = '#FFFFFF',
}: IconProps) {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      className={className}
      width={width}
      height={height}
      viewBox="0 0 32 32"
    >
      <path
        fill={fill}
        d="M8.6962891,30c-0.4228516,0-0.8457031-0.1259766-1.2041016-0.3808594
          c-0.6582031-0.4619141-0.9970703-1.2568359-0.8710938-2.0488281l1.2070313-7.5605469l-5.2275391-5.3144531
          c-0.5488281-0.5625-0.7446289-1.3828125-0.4956055-2.1308594c0.246582-0.7470703,0.8901367-1.2929688,1.668457-1.4169922
          l7.1152344-1.1083984l3.1777344-6.8237305C14.4082031,2.4736328,15.1787109,2.0253906,15.9707031,2
          c0.8115234,0,1.5507813,0.4677734,1.8984375,1.2011719l3.2226563,6.8017578l7.1171875,1.0605469
          c0.7783203,0.1181641,1.4287109,0.6582031,1.6806641,1.4033203c0.2548828,0.7441406,0.0673828,1.5703125-0.4814453,2.1337891
          l-5.1914063,5.3505859L25.4765625,27.5c0.1318359,0.7949219-0.2011719,1.5927734-0.8564453,2.0576172
          c-0.6611328,0.4677734-1.5234375,0.5185547-2.2265625,0.1289063l-6.3525391-3.4775391l-6.3251953,3.5224609
          C9.3994141,29.9130859,9.0458984,30,8.6962891,30L8.6962891,30z"
      />
    </svg>
  );
}
