ArcSpinner.tsx
20 lines
| 1 | import styles from './style.module.scss'; |
| 2 | |
| 3 | /** |
| 4 | * @since 4.6.0 |
| 5 | */ |
| 6 | export default function ArcSpinner() { |
| 7 | return ( |
| 8 | <svg className={styles.arcSpinner} width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 9 | <g clipPath="url(#uszxunxu7a)"> |
| 10 | <path d="M1.568 9.202C3.11 3.441 9.033.022 14.795 1.566c5.761 1.544 9.18 7.466 7.637 13.227" stroke="#fff" strokeWidth="1.8"/> |
| 11 | </g> |
| 12 | <defs> |
| 13 | <clipPath id="uszxunxu7a"> |
| 14 | <path fill="#fff" d="M0 0h24v24H0z"/> |
| 15 | </clipPath> |
| 16 | </defs> |
| 17 | </svg> |
| 18 | ); |
| 19 | } |
| 20 |