import React from "react";
import { Badge } from "@tencent/tea-component";

export default function BadgeExample() {
  return (
    <>
      <Badge dot />
      <Badge dot theme="success" />
      <Badge dot theme="warning" />
      <Badge dot theme="danger" />

      <br />

      <Badge ring />
      <Badge ring theme="success" />
      <Badge ring theme="warning" />
      <Badge ring theme="danger" />
    </>
  );
}
