// Copyright (c) Tailscale Inc & AUTHORS // SPDX-License-Identifier: BSD-3-Clause import cx from "classnames" import React, { ButtonHTMLAttributes } from "react" type Props = { intent?: "primary" | "secondary" } & ButtonHTMLAttributes export default function Button(props: Props) { const { intent = "primary", className, disabled, children, ...rest } = props return ( ) }