import * as React from 'react';

type IconProps = React.HTMLAttributes<SVGElement>;

function Spinner(props: IconProps) {
  return (
    <svg
      data-slot="spinner"
      width="24"
      height="24"
      viewBox="0 0 24 24"
      fill="none"
      stroke="currentColor"
      strokeWidth="2"
      strokeLinecap="round"
      strokeLinejoin="round"
      {...props}
    >
      <path d="M21 12a9 9 0 1 1-6.219-8.56" />
    </svg>
  );
}

export { Spinner };
