github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/ui/src/components/icon/spin.tsx (about)

     1  // Copyright 2020 The Cockroach Authors.
     2  //
     3  // Use of this software is governed by the Business Source License
     4  // included in the file licenses/BSL.txt.
     5  //
     6  // As of the Change Date specified in that file, in accordance with
     7  // the Business Source License, use of this software will be governed
     8  // by the Apache License, Version 2.0, included in the file
     9  // licenses/APL.txt.
    10  
    11  import * as React from "react";
    12  
    13  const SpinIcon = (props: React.SVGProps<SVGSVGElement>) => (
    14    <svg width={18} height={18} viewBox="0 0 18 18" fill="none" {...props}>
    15      <path
    16        fillRule="evenodd"
    17        clipRule="evenodd"
    18        d="M0 9a9 9 0 109-9v2.25A6.75 6.75 0 112.25 9H0z"
    19        fill="#7E89A9"
    20      />
    21    </svg>
    22  );
    23  
    24  export default SpinIcon;