const getHtml = ({
buttonText,
buttonClasses,
buttonColor,
buttonTextColor,
}: {
buttonText: string;
buttonClasses: string[];
buttonColor: string;
buttonTextColor: string;
}) => {
// IT IS A REQUIREMENT THAT ALL POSSIBLE CLASSES ARE HERE OTHERWISE TAILWIND WONT GENERATE THE CSS FOR CONDITIONAL CLASSES
// To not let all these classes apply and visible, keep it hidden initially
return ``;
};
export default getHtml;