import { GrCheckbox, GrCheckboxSelected } from 'react-icons/gr'
const highLight = (highLightStyles: any, selected: boolean, d: string = '') =>
selected ? highLightStyles : d
const SubHeading = ({ children, pricingPage, ...extra }: any) =>
pricingPage ?
{children}
: {children}
export function PriceCell({
selected,
onClick,
pricingPage,
textColor,
yearly,
costYearly,
cost,
selectHighPlans,
activePlan,
pageCount,
}: any) {
const pageCountFormatted = Intl.NumberFormat().format(pageCount || 0)
return (
)
}