2023-11-28 13:15:19 -05:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
2023-11-15 16:04:44 -05:00
|
|
|
import cx from "classnames"
|
|
|
|
import React, { HTMLAttributes } from "react"
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
className?: string
|
|
|
|
size: "sm" | "md"
|
|
|
|
} & HTMLAttributes<HTMLDivElement>
|
|
|
|
|
|
|
|
export default function Spinner(props: Props) {
|
|
|
|
const { className, size, ...rest } = props
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={cx(
|
|
|
|
"spinner inline-block rounded-full align-middle",
|
|
|
|
{
|
|
|
|
"border-2 w-4 h-4": size === "sm",
|
|
|
|
"border-4 w-8 h-8": size === "md",
|
|
|
|
},
|
|
|
|
className
|
|
|
|
)}
|
|
|
|
{...rest}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
Spinner.defaultProps = {
|
|
|
|
size: "md",
|
|
|
|
}
|