// Copyright (c) Tailscale Inc & AUTHORS // SPDX-License-Identifier: BSD-3-Clause import cx from "classnames" import React, { HTMLAttributes } from "react" type Props = HTMLAttributes /** * LoadingDots provides a set of horizontal dots to indicate a loading state. * These dots are helpful in horizontal contexts (like buttons) where a spinner * doesn't fit as well. */ export default function LoadingDots(props: Props) { const { className, ...rest } = props return (
) }