mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-04 19:21:51 +00:00
9 lines
298 B
Plaintext
9 lines
298 B
Plaintext
export const SubscriptionBanner = ({ children }) => {
|
|
return (
|
|
<Note>
|
|
This feature is available exclusively in <b>Prowler Cloud</b> and <b>Prowler Enterprise</b> with a <a href="https://prowler.com/pricing">subscription</a>.
|
|
{children}
|
|
</Note>
|
|
);
|
|
};
|