mirror of
https://github.com/fleetdm/fleet
synced 2026-05-18 06:28:40 +00:00
## Addresses #10324 ## Implements   # Checklist for submitter If some of the following don't apply, delete the relevant line. - [x] Changes file added for user-visible changes in `changes/` - [x] Added/updated test inventory - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
20 lines
615 B
TypeScript
20 lines
615 B
TypeScript
import CustomLink from "components/CustomLink";
|
|
import Icon from "components/Icon";
|
|
import React from "react";
|
|
|
|
const PremiumFeatureMessage = () => {
|
|
return (
|
|
<div className="premium-feature-message-container">
|
|
<div className="premium-feature-message">
|
|
<Icon name="premium-feature" />
|
|
<p>This feature is included in Fleet Premium.</p>
|
|
<div className="external-link-and-icon">
|
|
<CustomLink url="https://fleetdm.com/upgrade" text="Learn more" />
|
|
<Icon name="external-link" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PremiumFeatureMessage;
|