{"version":3,"file":"bfb42043.js","sources":["../../../src/components/base/icon/CartIconWhite.tsx","../../../src/components/globals/cart/CartIconWithItems.client.tsx"],"sourcesContent":["/**\n * A shared component that specifies the icon to represent a cart\n */\nexport default function CartIconWhite(): JSX.Element {\n return (\n \n );\n}\n","import React from 'react';\nimport {useCart} from '@shopify/hydrogen';\nimport {useGlobalSettings} from 'Js/hooks/useGlobalSettings';\n\nimport CartIconBlack from '@base/icon/CartIconBlack';\nimport CartIconWhite from '@base/icon/CartIconWhite';\nimport clsx from 'clsx';\n\n/**\n * A client component that specifies the icon to use if a cart contains merchandise\n */\nexport function CartIconWithItems({\n headerSolid,\n}: {\n headerSolid?: any;\n}): JSX.Element {\n const {mainColor, companionColor} = useGlobalSettings();\n const {totalQuantity} = useCart();\n\n return (\n <>\n