AddonRowActions.jsx
4 weeks ago
AddonsList.jsx
4 weeks ago
AllAccessAddonsSummary.jsx
1 month ago
AutoUpdateModal.jsx
1 month ago
DownloadActivateButton.jsx
4 weeks ago
EmptyState.jsx
1 month ago
FeatureList.jsx
1 month ago
LicenseField.jsx
1 month ago
LicenseItem.jsx
4 weeks ago
LicenseNotices.jsx
4 weeks ago
LicenseStatus.jsx
1 month ago
Loader.jsx
4 weeks ago
PricingModal.jsx
1 month ago
PricingTable.jsx
1 month ago
PricingTableItem.jsx
1 month ago
SitesModal.jsx
1 month ago
LicenseField.jsx
14 lines
| 1 | /** |
| 2 | * Internal Dependencies |
| 3 | */ |
| 4 | import { clsx } from '@admin/utils'; |
| 5 | |
| 6 | export function LicenseField( { label, value, className } ) { |
| 7 | return ( |
| 8 | <div className={ clsx( 'min-w-0 space-y-1', className ) }> |
| 9 | <div className="text-sm font-semibold">{ label }</div> |
| 10 | <div className="text-sm text-gray-500">{ value }</div> |
| 11 | </div> |
| 12 | ); |
| 13 | } |
| 14 |