import { Rate } from '../types' import styles from '../rate-card.module.css' import { Typography } from '../../Typography' import { Button } from '../../Button' import InfoCircleIcon from '../../Icons/InfoCircle' import CheckCircleIcon from '../../Icons/CheckCircle' import { variants } from '../variants' interface RegularRateCardProps { name: string value: string isSelected: boolean rateTitle: string paymentTerm: string rate?: Rate memberRate?: Rate approximateRate: Rate hidePublicRate?: boolean handleChange: () => void handleTermsClick?: () => void } export default function RegularRateCard({ name, value, isSelected, rateTitle, paymentTerm, approximateRate, rate, memberRate, hidePublicRate, handleChange, handleTermsClick, }: RegularRateCardProps) { const classNames = variants({ variant: 'Regular' }) return ( ) }