'use client'; import { Heading, Text } from '@/components/ui/Typography'; import { ToggleSwitch } from './ToggleSwitch'; interface CookieCategoryCardProps { title: string; description: string; enabled: boolean; onChange: () => void; disabled?: boolean; } export function CookieCategoryCard({ title, description, enabled, onChange, disabled = false }: CookieCategoryCardProps) { return (
{title}
{description}
); }