import React from 'react'; import { Card, CardContent } from '@/components/ui/Card.tsx'; import IconWrapper from '@/components/ui/IconWrapper.tsx'; interface ContactCardProps { icon: React.ReactNode; title: string; children?: React.ReactNode; } const ContactCard = ({ icon, title, children }: ContactCardProps) => { return ( {icon}

{title}

{children}
); }; export default ContactCard;