Files
slash-e/frontend/web/src/components/FeatureBadge.tsx
2024-07-30 21:35:49 +08:00

17 lines
354 B
TypeScript

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;