import React from "react"; import classNames from "@calcom/lib/classNames"; export type BadgeProps = { variant: "default" | "success" | "gray"; } & JSX.IntrinsicElements["span"]; export const Badge = function Badge(props: BadgeProps) { const { variant, className, ...passThroughProps } = props; return ( {props.children} ); }; export default Badge;