fleet/frontend/components/PremiumFeatureMessage/PremiumFeatureMessage.tsx
Jacob Shandling 1c2a486bf0
UI: Add Upsell component including PremiumFeature icon (#10481)
## Addresses #10324 

## Implements

![Screenshot 2023-03-14 at 12 51 14
PM](https://user-images.githubusercontent.com/61553566/225120738-6bbf5522-ed81-4463-b85f-a3502a2c81f3.png)
![Screenshot 2023-03-14 at 1 12 48
PM](https://user-images.githubusercontent.com/61553566/225125534-dc29151d-b945-480e-921f-5fef2b15304d.png)

# 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>
2023-03-14 15:23:20 -07:00

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;