import { Tooltip } from "@mui/joy"; import Icon from "./Icon"; interface Props { className?: string; } const FeatureBadge = ({ className }: Props) => { return ( ); }; export default FeatureBadge;