{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Nu21FWoYMWTJ4UtCehcI/QGnoFwdbfqIrKeG9jBhI/USD_Currency_Conversion.js", "ssg:https://framerusercontent.com/modules/aMUNFlfRaWvOYrGlsk80/VTiZEDNCJ8bX9xmcqEjv/W8zxRLDVO.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useEffect}from\"react\";// Shared state object to cache data across all instances\nconst sharedState={exchangeRates:null,cryptoData:{}};function CryptoPriceComponent(props){const{crypto,fiatCurrency,displayType,fontFamily,fontSize,textColor,textAlignment}=props;const[isLoading,setIsLoading]=useState(true);const[error,setError]=useState(null);useEffect(()=>{const fetchData=async()=>{if(sharedState.exchangeRates&&sharedState.cryptoData[crypto]){setIsLoading(false);return;}try{// Fetch exchange rates if not already in shared state\nif(!sharedState.exchangeRates){const ratesResponse=await fetch(\"https://bitpay.com/framer-api/rates\",{method:\"GET\",headers:{Accept:\"application/json\"}});if(!ratesResponse.ok)throw new Error(`HTTP error! status: ${ratesResponse.status}`);const ratesData=await ratesResponse.json();const rates={};if(Array.isArray(ratesData)){ratesData.forEach(item=>{if(item.code&&item.rate){rates[item.code]=item.rate;}});}if(Object.keys(rates).length===0)throw new Error(\"Invalid exchange rate data structure\");sharedState.exchangeRates=rates;}// Fetch crypto data if not already in shared state\nif(!sharedState.cryptoData[crypto]){const cryptoResponse=await fetch(`https://bitpay.com/framer-api/currencies/prices?currencyPairs=[\"${crypto}:USD\"]`);const cryptoData=await cryptoResponse.json();if(cryptoData&&cryptoData.length>0&&cryptoData[0].prices){sharedState.cryptoData[crypto]=cryptoData[0];}else{throw new Error(\"No data available for the selected pair\");}}setIsLoading(false);}catch(error){console.error(\"Failed to fetch data:\",error);setError(error.message);setIsLoading(false);}};fetchData();},[crypto])// Only re-run if crypto changes\n;const convertPrice=usdPrice=>{if(!sharedState.exchangeRates||!sharedState.exchangeRates[fiatCurrency]){console.error(`Exchange rate not available for ${fiatCurrency}`);return usdPrice;}const btcToUsd=sharedState.exchangeRates.USD;const btcToFiat=sharedState.exchangeRates[fiatCurrency];return usdPrice/btcToUsd*btcToFiat;};const getFormattedPrice=()=>{if(isLoading)return\"Loading...\";if(error)return`Error: ${error}`;if(!sharedState.exchangeRates||!sharedState.cryptoData[crypto])return\"N/A\";const prices=sharedState.cryptoData[crypto].prices.map(p=>({...p,price:convertPrice(p.price)}));let value;switch(displayType){case\"highest\":value=Math.max(...prices.map(p=>p.price));break;case\"lowest\":value=Math.min(...prices.map(p=>p.price));break;case\"change\":const firstPrice=prices[0].price;const lastPrice=prices[prices.length-1].price;value=(lastPrice-firstPrice)/firstPrice*100;return(value>0?\"+\":\"\")+value.toFixed(2)+\"%\";default:value=prices[prices.length-1].price;}if(crypto===\"SHIB\"){return value.toFixed(8);}return new Intl.NumberFormat(fiatCurrency===\"GBP\"?\"en-GB\":\"en-US\",{style:\"currency\",currency:fiatCurrency,minimumFractionDigits:2,maximumFractionDigits:2}).format(value);};const getChangeColor=()=>{if(displayType!==\"change\")return textColor;const changeValue=parseFloat(getFormattedPrice());if(changeValue>0)return\"#0B754A\";if(changeValue<0)return\"#B51B16\";return\"#434D5A\";};return /*#__PURE__*/_jsx(\"div\",{style:{fontFamily,fontSize:`${fontSize}px`,color:getChangeColor(),textAlign:textAlignment,width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:textAlignment===\"left\"?\"flex-start\":textAlignment===\"right\"?\"flex-end\":\"center\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(\"div\",{children:getFormattedPrice()})});}CryptoPriceComponent.defaultProps={crypto:\"BTC\",fiatCurrency:\"USD\",displayType:\"current\",fontFamily:\"Arial, sans-serif\",fontSize:16,textColor:\"#000000\",textAlignment:\"left\"};addPropertyControls(CryptoPriceComponent,{crypto:{type:ControlType.Enum,title:\"Cryptocurrency\",options:[\"BTC\",\"BCH\",\"ETH\",\"DOGE\",\"LTC\",\"USDC\",\"DAI\",\"WBTC\",\"SHIB\",\"APE\",\"MATIC\",\"USDT\",\"XRP\"],optionTitles:[\"Bitcoin\",\"Bitcoin Cash\",\"Ethereum\",\"Dogecoin\",\"Litecoin\",\"USD Coin\",\"Dai\",\"Wrapped Bitcoin\",\"Shiba Inu\",\"ApeCoin\",\"Polygon\",\"Tether\",\"XRP\"]},fiatCurrency:{type:ControlType.Enum,title:\"Fiat Currency\",options:[\"USD\",\"EUR\",\"GBP\",\"JPY\",\"CAD\",\"AUD\"],optionTitles:[\"US Dollar\",\"Euro\",\"British Pound\",\"Japanese Yen\",\"Canadian Dollar\",\"Australian Dollar\"]},displayType:{type:ControlType.Enum,title:\"Display Type\",options:[\"current\",\"highest\",\"lowest\",\"change\"],optionTitles:[\"Current Price\",\"Highest Price\",\"Lowest Price\",\"Percentage Change\"]},fontFamily:{type:ControlType.String,title:\"Font Family\"},fontSize:{type:ControlType.Number,title:\"Font Size\",min:8,max:72,step:1},textColor:{type:ControlType.Color,title:\"Text Color\"},textAlignment:{type:ControlType.Enum,title:\"Text Alignment\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"]}});export default CryptoPriceComponent;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CryptoPriceComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./USD_Currency_Conversion.map", "// Generated by Framer (c56cc2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import CryptoPriceComponent from\"https://framerusercontent.com/modules/Nu21FWoYMWTJ4UtCehcI/QGnoFwdbfqIrKeG9jBhI/USD_Currency_Conversion.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/N5QJX1JzhTaJHlY3oCQq/TX1EPnwwDwn2oJPQ1KQy/AagzoX5rC.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eCjiS6IwlXC5Qcs0vq3U/XWseGC3imdPVaGjMQrKf/B634eT0R2.js\";import BitpayMoleculeButton from\"https://framerusercontent.com/modules/52yajDKuAXcaLGq7bhHs/UuOZzKEfuGElp5NF8jsa/MfjUXkNDJ.js\";const CryptoPriceComponentFonts=getFonts(CryptoPriceComponent);const BitpayMoleculeButtonFonts=getFonts(BitpayMoleculeButton);const CryptoPriceComponentControls=getPropertyControls(CryptoPriceComponent);const serializationHash=\"framer-g0Wth\";const variantClassNames={WjzLEa4mY:\"framer-v-fo614l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"QtIzQC20L\":return\"GBP\";default:return\"USD\";}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Bitcoin Cash\":\"BCH\",\"Shiba Inu\":\"SHIB\",\"USD Coin\":\"USDC\",\"Wrapped Bitcoin\":\"WBTC\",ApeCoin:\"APE\",Bitcoin:\"BTC\",Dai:\"DAI\",Dogecoin:\"DOGE\",Ethereum:\"ETH\",Litecoin:\"LTC\",Polygon:\"MATIC\",Tether:\"USDT\",XRP:\"XRP\"};const getProps=({buttonName,cryptocurrency,height,id,uRL,width,...props})=>{return{...props,asZKUSLM2:buttonName??props.asZKUSLM2??\"Buy Polygon (POL)\",oDIQhTIKC:humanReadableEnumMap[cryptocurrency]??cryptocurrency??props.oDIQhTIKC??\"BTC\",UsTCNmaHE:uRL??props.UsTCNmaHE};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,oDIQhTIKC,asZKUSLM2,UsTCNmaHE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"WjzLEa4mY\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-fo614l\",className,classNames),\"data-framer-name\":\"US\",layoutDependency:layoutDependency,layoutId:\"WjzLEa4mY\",ref:ref??ref1,style:{backgroundColor:\"var(--token-48bb380c-0c41-43ac-8da9-9a1814a2bf7a, rgb(245, 247, 248))\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11lvw6a\",layoutDependency:layoutDependency,layoutId:\"RrzEF5ID8\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f9uzpq\",\"data-styles-preset\":\"AagzoX5rC\",children:\"Today's Price\"})}),className:\"framer-vmfdzr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hcxKO8I2I\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sqbz9o\",layoutDependency:layoutDependency,layoutId:\"HN8YCTxTl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y641o3-container\",layoutDependency:layoutDependency,layoutId:\"hTkXw2u3z-container\",children:/*#__PURE__*/_jsx(CryptoPriceComponent,{crypto:oDIQhTIKC,displayType:\"current\",fiatCurrency:convertFromEnum(activeLocale?.id,activeLocale),fontFamily:\"archivo\",fontSize:36,height:\"100%\",id:\"hTkXw2u3z\",layoutId:\"hTkXw2u3z\",style:{width:\"100%\"},textAlignment:\"center\",textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+64+(((componentViewport?.height||603.5)-128-1063.6)/2+0+0)+24+239.6,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2bdlv5-container\",layoutDependency:layoutDependency,layoutId:\"smBVza2gO-container\",children:/*#__PURE__*/_jsx(BitpayMoleculeButton,{height:\"100%\",id:\"smBVza2gO\",layoutId:\"smBVza2gO\",OWMgoZLsJ:UsTCNmaHE,ryHbJMac9:asZKUSLM2,variant:\"z80WfNT27\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n78gnn\",layoutDependency:layoutDependency,layoutId:\"KYJ563igY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fp3qo4\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"CjMiFJF0d\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d53be6ba-1233-4b07-b8cf-e88ffd1c5ef8, rgb(155, 163, 174))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1tZWRpdW0=\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c6138ab1-6c81-4887-9a58-4c32b67fad71, rgb(67, 77, 90)))\"},children:\"1D\"})}),className:\"framer-zihv80\",fonts:[\"FS;Archivo-medium\"],layoutDependency:layoutDependency,layoutId:\"aX5lCMzU5\",style:{\"--extracted-r6o4lv\":\"var(--token-c6138ab1-6c81-4887-9a58-4c32b67fad71, rgb(67, 77, 90))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rcgqrw\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"RElCFTr2h\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d53be6ba-1233-4b07-b8cf-e88ffd1c5ef8, rgb(155, 163, 174))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-md9mns\",\"data-styles-preset\":\"B634eT0R2\",children:\"Change\"})}),className:\"framer-84v61f\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"O718ClBNf\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2onh0g-container\",layoutDependency:layoutDependency,layoutId:\"kEC4s4vjY-container\",children:/*#__PURE__*/_jsx(CryptoPriceComponent,{crypto:oDIQhTIKC,displayType:\"change\",fiatCurrency:\"USD\",fontFamily:\"archivo\",fontSize:20,height:\"100%\",id:\"kEC4s4vjY\",layoutId:\"kEC4s4vjY\",textAlignment:\"left\",textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o8ufrz\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"VbWh8lCa5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d53be6ba-1233-4b07-b8cf-e88ffd1c5ef8, rgb(155, 163, 174))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-md9mns\",\"data-styles-preset\":\"B634eT0R2\",children:\"High\"})}),className:\"framer-47a2bf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"niPOl2F58\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4f5zbd\",layoutDependency:layoutDependency,layoutId:\"jwi95mWp7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11x7mr9-container\",layoutDependency:layoutDependency,layoutId:\"gfDmE4l2I-container\",children:/*#__PURE__*/_jsx(CryptoPriceComponent,{crypto:oDIQhTIKC,displayType:\"highest\",fiatCurrency:convertFromEnum(activeLocale?.id,activeLocale),fontFamily:\"archivo\",fontSize:20,height:\"100%\",id:\"gfDmE4l2I\",layoutId:\"gfDmE4l2I\",textAlignment:\"left\",textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h2se4p\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"G4e6gn6a1\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d53be6ba-1233-4b07-b8cf-e88ffd1c5ef8, rgb(155, 163, 174))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-md9mns\",\"data-styles-preset\":\"B634eT0R2\",children:\"Low\"})}),className:\"framer-1sesced\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wVFlHjh3g\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14g9t3x\",layoutDependency:layoutDependency,layoutId:\"rapgI1HHe\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tglh30-container\",layoutDependency:layoutDependency,layoutId:\"hZPokG83d-container\",children:/*#__PURE__*/_jsx(CryptoPriceComponent,{crypto:oDIQhTIKC,displayType:\"lowest\",fiatCurrency:convertFromEnum(activeLocale?.id,activeLocale),fontFamily:\"archivo\",fontSize:20,height:\"100%\",id:\"hZPokG83d\",layoutId:\"hZPokG83d\",textAlignment:\"left\",textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-g0Wth.framer-noprzb, .framer-g0Wth .framer-noprzb { display: block; }\",\".framer-g0Wth.framer-fo614l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px; position: relative; width: 600px; }\",\".framer-g0Wth .framer-11lvw6a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-g0Wth .framer-vmfdzr, .framer-g0Wth .framer-zihv80, .framer-g0Wth .framer-84v61f, .framer-g0Wth .framer-47a2bf, .framer-g0Wth .framer-1sesced { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-g0Wth .framer-sqbz9o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g0Wth .framer-y641o3-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-g0Wth .framer-2bdlv5-container, .framer-g0Wth .framer-2onh0g-container, .framer-g0Wth .framer-11x7mr9-container, .framer-g0Wth .framer-tglh30-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-g0Wth .framer-1n78gnn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g0Wth .framer-1fp3qo4, .framer-g0Wth .framer-rcgqrw, .framer-g0Wth .framer-1o8ufrz, .framer-g0Wth .framer-1h2se4p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-g0Wth .framer-4f5zbd, .framer-g0Wth .framer-14g9t3x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-g0Wth.framer-fo614l, .framer-g0Wth .framer-11lvw6a, .framer-g0Wth .framer-sqbz9o, .framer-g0Wth .framer-1n78gnn, .framer-g0Wth .framer-4f5zbd, .framer-g0Wth .framer-14g9t3x { gap: 0px; } .framer-g0Wth.framer-fo614l > *, .framer-g0Wth .framer-11lvw6a > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-g0Wth.framer-fo614l > :first-child, .framer-g0Wth .framer-11lvw6a > :first-child, .framer-g0Wth .framer-1n78gnn > :first-child { margin-top: 0px; } .framer-g0Wth.framer-fo614l > :last-child, .framer-g0Wth .framer-11lvw6a > :last-child, .framer-g0Wth .framer-1n78gnn > :last-child { margin-bottom: 0px; } .framer-g0Wth .framer-sqbz9o > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-g0Wth .framer-sqbz9o > :first-child, .framer-g0Wth .framer-4f5zbd > :first-child, .framer-g0Wth .framer-14g9t3x > :first-child { margin-left: 0px; } .framer-g0Wth .framer-sqbz9o > :last-child, .framer-g0Wth .framer-4f5zbd > :last-child, .framer-g0Wth .framer-14g9t3x > :last-child { margin-right: 0px; } .framer-g0Wth .framer-1n78gnn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-g0Wth .framer-4f5zbd > *, .framer-g0Wth .framer-14g9t3x > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-g0Wth[data-border=\"true\"]::after, .framer-g0Wth [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 603.5\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"oDIQhTIKC\":\"cryptocurrency\",\"asZKUSLM2\":\"buttonName\",\"UsTCNmaHE\":\"uRL\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW8zxRLDVO=withCSS(Component,css,\"framer-g0Wth\");export default FramerW8zxRLDVO;FramerW8zxRLDVO.displayName=\"bitpay-organism/Buy Crypto Price Chart\";FramerW8zxRLDVO.defaultProps={height:603.5,width:600};addPropertyControls(FramerW8zxRLDVO,{oDIQhTIKC:CryptoPriceComponentControls?.[\"crypto\"]&&{...CryptoPriceComponentControls[\"crypto\"],defaultValue:\"BTC\",description:undefined,hidden:undefined,title:\"Cryptocurrency\"},asZKUSLM2:{defaultValue:\"Buy Polygon (POL)\",displayTextArea:false,title:\"Button Name\",type:ControlType.String},UsTCNmaHE:{title:\"URL\",type:ControlType.Link}});addFonts(FramerW8zxRLDVO,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Archivo\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5ISYWGR43XD57J2U5VEYATNUZO57OCPH/UIED7ZBTCD42AJ7GJT5NWKWHCOVDRNAP/EPHSF4UBJRLGUILEFJVCMY7ET4W5HPUF.woff2\",weight:\"500\"}]},...CryptoPriceComponentFonts,...BitpayMoleculeButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW8zxRLDVO\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"600\",\"framerVariables\":\"{\\\"oDIQhTIKC\\\":\\\"cryptocurrency\\\",\\\"asZKUSLM2\\\":\\\"buttonName\\\",\\\"UsTCNmaHE\\\":\\\"uRL\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"603.5\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["sharedState", "CryptoPriceComponent", "props", "crypto", "fiatCurrency", "displayType", "fontFamily", "fontSize", "textColor", "textAlignment", "isLoading", "setIsLoading", "ye", "error", "setError", "ue", "ratesResponse", "ratesData", "rates", "item", "cryptoData", "convertPrice", "usdPrice", "btcToUsd", "btcToFiat", "getFormattedPrice", "prices", "p", "value", "firstPrice", "getChangeColor", "changeValue", "addPropertyControls", "ControlType", "USD_Currency_Conversion_default", "CryptoPriceComponentFonts", "getFonts", "USD_Currency_Conversion_default", "BitpayMoleculeButtonFonts", "MfjUXkNDJ_default", "CryptoPriceComponentControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "convertFromEnum", "value", "activeLocale", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "buttonName", "cryptocurrency", "height", "id", "uRL", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "oDIQhTIKC", "asZKUSLM2", "UsTCNmaHE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "ComponentViewportProvider", "USD_Currency_Conversion_default", "MfjUXkNDJ_default", "css", "FramerW8zxRLDVO", "withCSS", "W8zxRLDVO_default", "addPropertyControls", "CryptoPriceComponentControls", "ControlType", "addFonts", "CryptoPriceComponentFonts", "BitpayMoleculeButtonFonts", "getFontsFromSharedStyle", "fonts"]
}
