AddonRowActions.jsx
1 week ago
AddonsList.jsx
1 week ago
AllAccessAddonsSummary.jsx
1 week ago
AutoUpdateModal.jsx
1 week ago
DownloadActivateButton.jsx
1 week ago
EmptyState.jsx
1 week ago
FeatureList.jsx
1 week ago
LicenseField.jsx
1 week ago
LicenseItem.jsx
1 week ago
LicenseNotices.jsx
1 week ago
LicenseStatus.jsx
1 week ago
Loader.jsx
1 week ago
PricingModal.jsx
1 week ago
PricingTable.jsx
1 week ago
PricingTableItem.jsx
1 week ago
SitesModal.jsx
1 week 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 |