Files
prowler/docs/snippets/subscription-banner.mdx
2026-07-15 12:28:50 +02:00

9 lines
320 B
Plaintext

export const SubscriptionBanner = ({ children, label = "feature" }) => {
return (
<Note>
This {label} is available exclusively in <b>Prowler Cloud</b> and <b>Prowler Private Cloud</b> with a <a href="https://prowler.com/pricing">subscription</a>.
{children}
</Note>
);
};