"use client"; import clsx from "clsx"; export default function FooterBtnInAddToCartModal({ isAvailable, onBuyNow, onAddToCart }: { isAvailable: boolean; onBuyNow: () => void, onAddToCart: () => void }) { const btnClass = 'flex-none flex items-center justify-center w-40 h-11.5 rounded-4xl text-ly-16 font-bold text-white'; return (
{isAvailable ? (<> ) :

The selected options are not available!

}
); }