import { __ } from '@wordpress/i18n'; import Icon from '../components/Icon'; import { LockIcon, StarIcon } from '../icons'; /** Visual match for BrandToggle “off” state — inline styles so WP admin CSS cannot wash it out */ const ProLockedTogglePreview = () => ( ); const ProModulePlaceholder = ({ module }) => { const title = module?.label || module?.id || ''; const description = module?.description || ''; const iconName = module?.icon || module?.id || 'grid'; const cardShell = 'rounded-usk border border-solid border-gray-100 bg-white'; return (

{title}

{description && (

{description}

)}

{__('Module is currently disabled', 'ultimate-store-kit')}

{__( 'This is a Pro feature. Upgrade to Ultimate Store Kit Pro to unlock this module and configure its settings.', 'ultimate-store-kit' )}

{__('Get Pro', 'ultimate-store-kit')}
); }; export default ProModulePlaceholder;