mirror of
https://github.com/aykhans/slash-e.git
synced 2025-12-15 05:09:19 +00:00
17 lines
354 B
TypeScript
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;
|