import React from 'react' import styles from './recurringPayment.module.css' import { BsTriangleFill, BsYoutube, BsCalendar2Date } from 'react-icons/bs' import { RiHome7Fill, RiBillLine } from 'react-icons/ri' export default function RecurringPayment(props) { const renderIcon = (icon_type) => { const iconSize = 50 if (icon_type == "rent") { return ( ) } else if (icon_type == "youtube") { return ( ) } return ( ) } return (
{renderIcon(props.icon_type)}
{props.title}
Due in {props.due_in_days} days
₹{props.amount} · {props.frequency}
) }