import React from "react"; import { Size } from "../material-icon"; import { ButtonProps } from "@shared/contentful/blocks/button/types"; import { CheckPlansProps } from "@shared/types/micro-components"; export type SelectPlanButtonProps = { onSelect: () => void; speed: string; techType?: string; isMax?: boolean; iconSize?: Size; isSelected?: boolean; iconClassName?: string; renderCheckPlans?: (overrides?: CheckPlansProps) => React.ReactNode; cta?: ButtonProps; };