chore: update custom branding tips

This commit is contained in:
Steven
2024-07-30 21:35:49 +08:00
parent b6271938b3
commit 87e251d6b0
3 changed files with 39 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
import { Tooltip } from "@mui/joy";
import Icon from "./Icon";
interface Props {
className?: string;
}
const FeatureBadge = ({ className }: Props) => {
return (
<Tooltip title="This feature is not available on your plan." className={className} placement="top" arrow>
<Icon.Sparkles />
</Tooltip>
);
};
export default FeatureBadge;