mirror of
https://github.com/aykhans/slash-e.git
synced 2025-12-16 05:29:20 +00:00
chore: update custom branding tips
This commit is contained in:
16
frontend/web/src/components/FeatureBadge.tsx
Normal file
16
frontend/web/src/components/FeatureBadge.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user