import React, { FC } from "react";
export interface CartProviderProps {
  label?: string;
}
// title, size, price, discountedPrice, quantity, img, color, tag, onClick
export const CartProvider: FC<CartProviderProps> = (props: any) => {
  return (
    <div className="relative w-full rounded-[10px] bg-white py-20 2xl:py-20-2xl  ">
      <div
        className={`relative px-20 2xl:px-20-2xl space-y-20 2xl:space-y-20-2xl`}
      >
        {props.children}
      </div>
    </div>
  );
};
export default CartProvider;
