import React from 'react' import styles from './ModalPlatformCard.module.css' interface Props { icon: React.ReactNode label: string onClick: () => void badge?: 'pro' | 'new' className?: string } const ModalPlatformCard: React.FC = ({ icon, label, onClick, badge, className = '' }) => { return ( ) } export default ModalPlatformCard