import {FC} from 'react' import {Link} from 'react-router-dom' import {IconUserModel} from '../../../../app/modules/profile/ProfileModels' import {UsersList} from '../../../../app/modules/profile/components/UsersList' import {toAbsoluteUrl} from '../../../helpers' type Props = { icon: string badgeColor: string status: string statusColor: string title: string description: string date: string budget: string progress: number users?: Array } const Card2: FC = ({ icon, badgeColor, status, statusColor, title, description, date, budget, progress, users = undefined, }) => { return (
card2
{status}
{title}

{description}

{date}
Due Date
{budget}
Budget
) } export {Card2}