+
{icon}
+
+
+ {label}
+
+
+ {value}
+
+
+
+ );
- const cardHoverStyle: React.CSSProperties = {
- ...cardStyle,
- transform: 'translateY(-2px)',
- boxShadow: '0 4px 16px rgba(0, 0, 0, 0.15)',
- };
+ const FeatureToggle: React.FC<{
+ icon: React.ReactNode;
+ title: string;
+ description: string;
+ enabled: boolean;
+ onToggle: (enabled: boolean) => void;
+ color: string;
+ }> = ({ icon, title, description, enabled, onToggle, color }) => (
+