summaryrefslogtreecommitdiffhomepage
path: root/client/web/src/ui/badge.tsx
blob: de8c21e3568ab72a57513c2e107018d517009639 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright (c) Tailscale Inc & contributors
// SPDX-License-Identifier: BSD-3-Clause

import cx from "classnames"
import React, { HTMLAttributes } from "react"

export type BadgeColor =
  | "blue"
  | "green"
  | "red"
  | "orange"
  | "yellow"
  | "gray"
  | "outline"

type Props = {
  variant: "tag" | "status"
  color: BadgeColor
} & HTMLAttributes<HTMLDivElement>

export default function Badge(props: Props) {
  const { className, color, variant, ...rest } = props

  return (
    <div
      className={cx(
        "inline-flex items-center align-middle justify-center font-medium",
        {
          "border border-gray-200 bg-gray-200 text-gray-600": color === "gray",
          "border border-green-50 bg-green-50 text-green-600":
            color === "green",
          "border border-blue-50 bg-blue-50 text-blue-600": color === "blue",
          "border border-orange-50 bg-orange-50 text-orange-600":
            color === "orange",
          "border border-yellow-50 bg-yellow-50 text-yellow-600":
            color === "yellow",
          "border border-red-50 bg-red-50 text-red-600": color === "red",
          "border border-gray-300 bg-white": color === "outline",
          "rounded-full px-2 py-1 leading-none": variant === "status",
          "rounded-sm px-1": variant === "tag",
        },
        className
      )}
      {...rest}
    />
  )
}

Badge.defaultProps = {
  color: "gray",
}