import React, { FC } from "react";
export interface CartSideBarProviderProps {
  label?: string;
}

export const CartSideBarProvider: FC<CartSideBarProviderProps> = (
  props: any
) => {
  return (
    <div className="fixed w-full max-w-full lg:max-w-[507px] 2xl:max-w-[35.208vw] right-0 top-0 bottom-0 z-[99] bg-primary overflow-hidden transition-transform duration-700 tursh ">
      {props.children}
    </div>
  );
};
export default CartSideBarProvider;
