// MUI Imports import Card from '@mui/material/Card' import CardHeader from '@mui/material/CardHeader' import CardContent from '@mui/material/CardContent' import Grid from '@mui/material/Grid2' import Typography from '@mui/material/Typography' import Button from '@mui/material/Button' import Chip from '@mui/material/Chip' import Alert from '@mui/material/Alert' import AlertTitle from '@mui/material/AlertTitle' import LinearProgress from '@mui/material/LinearProgress' import type { ButtonProps } from '@mui/material/Button' // Type Imports import type { PricingPlanType } from '@/types/pages/pricingTypes' import type { ThemeColor } from '@core/types' // Component Imports import ConfirmationDialog from '@components/dialogs/confirmation-dialog' import UpgradePlan from '@components/dialogs/upgrade-plan' import OpenDialogOnElementClick from '@components/dialogs/OpenDialogOnElementClick' const CurrentPlan = ({ data }: { data?: PricingPlanType[] }) => { const buttonProps = (children: string, color: ThemeColor, variant: ButtonProps['variant']): ButtonProps => ({ children, variant, color }) return (
Your Current Plan is Basic A simple start for everyone
Active until Dec 09, 2021 We will send you a notification upon Subscription expiration
$199 Per Month
Standard plan for small to medium businesses
We need your attention! Your plan requires update
Days 12 of 30 Days
18 days remaining until your plan requires update
) } export default CurrentPlan