// Copyright (c) Tailscale Inc & AUTHORS // SPDX-License-Identifier: BSD-3-Clause import cx from "classnames" import React, { HTMLAttributes } from "react" type Props = { className?: string size: "sm" | "md" } & HTMLAttributes export default function Spinner(props: Props) { const { className, size, ...rest } = props return (
) } Spinner.defaultProps = { size: "md", }