import React from 'react'; const LockedFeatureCard = ( { icon, title, description, value, actionLabel = 'Upgrade to View' }: { icon: React.ReactNode; title: string; description: string; value?: string | number; actionLabel?: string; } ) => { const hasValue = value !== undefined && value !== null; return (
{icon} { title }

{ hasValue ? value : '****' }

{ actionLabel }

{ description }

); }; export default LockedFeatureCard;