mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-23 20:42:02 +00:00
9 lines
320 B
Plaintext
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>
|
|
);
|
|
};
|