{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/yYuhXczzSroFEeP5V8aM/6TYVmrCggakOr9vSF283/Component_switch.js", "ssg:https://framerusercontent.com/modules/XnNXUJPKBCuazFT4ItDP/HpSkTGD5K2Zq1CHGuG7K/Color.js", "ssg:https://framerusercontent.com/modules/3ejYJoFgDOUeX3321Umc/aQOeOQSpehrw33ohIv9x/biC3coCGW.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js", "ssg:https://framerusercontent.com/modules/cT9nZXuY9HlUGVpQfO80/Z0JKDeMtdx1oyhlDUiWI/kV3YYc6B8.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n */export function FrameSwitcher({lightVersion,darkVersion,backgroundColor,cornerRadius,overflow}){const[isDarkMode,setIsDarkMode]=useState(false);const[dimensions,setDimensions]=useState({height:100,width:100});const updateTheme=()=>{const currentTheme=localStorage.getItem(\"currentToggleState\");setIsDarkMode(currentTheme===\"dark\");};useEffect(()=>{const mediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");const handleChange=e=>setIsDarkMode(e.matches);mediaQuery.addEventListener(\"change\",handleChange);updateTheme()// Check the initial theme\n;return()=>{mediaQuery.removeEventListener(\"change\",handleChange);};},[]);useEffect(()=>{if(lightVersion||darkVersion){setDimensions({height:\"auto\",width:\"auto\"});}else{setDimensions({height:100,width:100});}},[lightVersion,darkVersion]);useEffect(()=>{const handleThemeChange=()=>{updateTheme();};window.addEventListener(\"themeChange\",handleThemeChange);return()=>{window.removeEventListener(\"themeChange\",handleThemeChange);};},[]);return /*#__PURE__*/_jsx(\"div\",{style:{height:dimensions.height,width:dimensions.width,backgroundColor,borderRadius:cornerRadius,overflow:overflow},children:isDarkMode?/*#__PURE__*/_jsx(\"div\",{width:\"100%\",height:\"100%\",children:darkVersion}):/*#__PURE__*/_jsx(\"div\",{width:\"100%\",height:\"100%\",children:lightVersion})});}addPropertyControls(FrameSwitcher,{lightVersion:{type:ControlType.ComponentInstance,title:\"Light Version\"},darkVersion:{type:ControlType.ComponentInstance,title:\"Dark Version\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"transparent\"},cornerRadius:{type:ControlType.Number,title:\"Corner Radius\",defaultValue:0},overflow:{type:ControlType.Enum,title:\"Overflow\",options:[\"visible\",\"hidden\"],optionTitles:[\"Visible\",\"Hidden\"],defaultValue:\"visible\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"FrameSwitcher\":{\"type\":\"reactComponent\",\"name\":\"FrameSwitcher\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Component_switch.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";function getOSTheme(){if(typeof window!==\"undefined\"&&typeof document!==\"undefined\"){return window.matchMedia&&window.matchMedia(\"(prefers-color-scheme: dark)\").matches?\"dark\":\"light\";}return\"light\";}function setInitialState(){const osTheme=getOSTheme();const currentToggleState=localStorage.getItem(\"currentToggleState\")||(osTheme===\"dark\"?\"dark\":\"light\");localStorage.setItem(\"currentToggleState\",currentToggleState);if(typeof document!==\"undefined\"){const styleTag=document.getElementsByTagName(\"style\")[0];const newCSS=styleTag.innerHTML.replace(/prefers-color-scheme: \\w+/,`prefers-color-scheme: ${currentToggleState===\"dark\"&&osTheme===\"dark\"||currentToggleState===\"light\"&&osTheme===\"light\"?\"dark\":\"light\"}`);styleTag.innerHTML=newCSS;}return currentToggleState===\"dark\";}export function themeSwictherBasedOnSystem(Component){return props=>{const[isOn,setIsOn]=useState(setInitialState());const toggle=()=>{const newToggleState=!isOn?\"dark\":\"light\";setIsOn(!isOn);localStorage.setItem(\"currentToggleState\",newToggleState);if(typeof window!==\"undefined\"){window.dispatchEvent(new CustomEvent(\"themeChange\"));}};useEffect(()=>{if(typeof window!==\"undefined\"){const mediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");mediaQuery.addListener(e=>{const newTheme=e.matches?\"dark\":\"light\";localStorage.setItem(\"currentOsTheme\",newTheme);localStorage.setItem(\"currentToggleState\",newTheme);setIsOn(newTheme===\"dark\");if(typeof document!==\"undefined\"){const styleTag=document.getElementsByTagName(\"style\")[0];const newCSS=styleTag.innerHTML.replace(/prefers-color-scheme: \\w+/,`prefers-color-scheme: ${newTheme===\"dark\"&&newTheme===\"dark\"||newTheme===\"light\"&&newTheme===\"light\"?\"dark\":\"light\"}`);styleTag.innerHTML=newCSS;}window.dispatchEvent(new CustomEvent(\"themeChange\"));});}},[]);useEffect(()=>{if(typeof window!==\"undefined\"&&typeof document!==\"undefined\"){const currentToggleState=isOn?\"dark\":\"light\";const currentOsTheme=localStorage.getItem(\"currentOsTheme\")||getOSTheme();const styleTag=document.getElementsByTagName(\"style\")[0];const newCSS=styleTag.innerHTML.replace(/prefers-color-scheme: \\w+/,`prefers-color-scheme: ${currentToggleState===\"dark\"&&currentOsTheme===\"dark\"||currentToggleState===\"light\"&&currentOsTheme===\"light\"?\"dark\":\"light\"}`);styleTag.innerHTML=newCSS;localStorage.setItem(\"currentToggleState\",currentToggleState);}},[isOn]);const[isClient,setIsClient]=useState(false);useEffect(()=>{setIsClient(true);},[]);return /*#__PURE__*/_jsx(Component,{...props,onClick:toggle});};}\nexport const __FramerMetadata__ = {\"exports\":{\"themeSwictherBasedOnSystem\":{\"type\":\"reactHoc\",\"name\":\"themeSwictherBasedOnSystem\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Color.map", "// Generated by Framer (4240133)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{themeSwictherBasedOnSystem}from\"https://framerusercontent.com/modules/XnNXUJPKBCuazFT4ItDP/HpSkTGD5K2Zq1CHGuG7K/Color.js\";import Icon from\"https://framerusercontent.com/modules/d1YRPy5o7U6ztm6HhbQT/gsnLTIiMeVQ1q1pexcGL/Q_D3nB09C.js\";const IconFonts=getFonts(Icon);const MotionDivThemeSwictherBasedOnSystem=themeSwictherBasedOnSystem(motion.div);const enabledGestures={BrcoDMsn4:{hover:true},Gz_AJzdkd:{hover:true}};const cycleOrder=[\"BrcoDMsn4\",\"Gz_AJzdkd\"];const serializationHash=\"framer-em6Zy\";const variantClassNames={BrcoDMsn4:\"framer-v-wpqjc9\",Gz_AJzdkd:\"framer-v-1r3w5qj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.3,delay:0,duration:.5,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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 humanReadableVariantMap={dark:\"Gz_AJzdkd\",light:\"BrcoDMsn4\"};const getProps=({background,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,hSIeOieZV:(_ref=background!==null&&background!==void 0?background:props.hSIeOieZV)!==null&&_ref!==void 0?_ref:\"rgba(255, 255, 255, 0)\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"BrcoDMsn4\"};};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,hSIeOieZV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BrcoDMsn4\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivThemeSwictherBasedOnSystem,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wpqjc9\",className,classNames),\"data-framer-name\":\"light\",layoutDependency:layoutDependency,layoutId:\"BrcoDMsn4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:hSIeOieZV,borderBottomLeftRadius:95,borderBottomRightRadius:95,borderTopLeftRadius:95,borderTopRightRadius:95,boxShadow:\"none\",...style},variants:{\"BrcoDMsn4-hover\":{backgroundColor:\"var(--token-74ac0068-2b08-4b30-bef4-bf748c0aa60a, rgb(255, 255, 255))\",boxShadow:\"0px 0.6021873017743928px 0.84306222248415px -1.5px rgba(24, 46, 74, 0.08518), 0px 2.288533303243457px 3.20394662454084px -3px rgba(24, 46, 74, 0.07169), 0px 10px 14px -4.5px rgba(24, 46, 74, 0.01), 0.05927785749023314px 0.6520564323925646px 2.749930412481013px -0.65px rgba(32, 65, 84, 0.01923), 0.1614293476421153px 1.7757228240632683px 7.488790778600001px -1.3px rgba(32, 65, 84, 0.01877), 0.3544404209329514px 3.8988446302624657px 16.442674114810714px -1.95px rgba(32, 65, 84, 0.01791), 0.7867768067278668px 8.654544874006534px 36.49898225508803px -2.6px rgba(32, 65, 84, 0.01596), 2px 22px 92.78103254437299px -3.25px rgba(32, 65, 84, 0.0105)\"},\"Gz_AJzdkd-hover\":{backgroundColor:\"var(--token-74ac0068-2b08-4b30-bef4-bf748c0aa60a, rgb(255, 255, 255))\",boxShadow:\"0px 0.6021873017743928px 0.84306222248415px -1.5px rgba(24, 46, 74, 0.08518), 0px 2.288533303243457px 3.20394662454084px -3px rgba(24, 46, 74, 0.07169), 0px 10px 14px -4.5px rgba(24, 46, 74, 0.01), 0.05927785749023314px 0.6520564323925646px 2.749930412481013px -0.65px rgba(32, 65, 84, 0.01923), 0.1614293476421153px 1.7757228240632683px 7.488790778600001px -1.3px rgba(32, 65, 84, 0.01877), 0.3544404209329514px 3.8988446302624657px 16.442674114810714px -1.95px rgba(32, 65, 84, 0.01791), 0.7867768067278668px 8.654544874006534px 36.49898225508803px -2.6px rgba(32, 65, 84, 0.01596), 2px 22px 92.78103254437299px -3.25px rgba(32, 65, 84, 0.0105)\"}},...addPropertyOverrides({\"BrcoDMsn4-hover\":{\"data-framer-name\":undefined},\"Gz_AJzdkd-hover\":{\"data-framer-name\":undefined},Gz_AJzdkd:{\"data-framer-name\":\"dark\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||40)*.5000000000000002-12),...addPropertyOverrides({Gz_AJzdkd:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||40)*1.0500000000000003-12)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9j7yd1-container\",layoutDependency:layoutDependency,layoutId:\"C8a68taLz-container\",style:{opacity:1,rotate:0},transformTemplate:transformTemplate1,variants:{Gz_AJzdkd:{opacity:0,rotate:-120}},children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"C8a68taLz\",layoutId:\"C8a68taLz\",style:{height:\"100%\",width:\"100%\"},variant:\"BMyHC3wNY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||40)*1.0500000000000003-12),...addPropertyOverrides({Gz_AJzdkd:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||40)*.5000000000000002-12)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ia7js-container\",layoutDependency:layoutDependency,layoutId:\"gD16A3erd-container\",style:{opacity:0,rotate:120},transformTemplate:transformTemplate1,variants:{\"Gz_AJzdkd-hover\":{opacity:1,rotate:0},Gz_AJzdkd:{opacity:1,rotate:0}},children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"gD16A3erd\",layoutId:\"gD16A3erd\",style:{height:\"100%\",width:\"100%\"},variant:\"HgJmECPg_\",width:\"100%\",...addPropertyOverrides({Gz_AJzdkd:{VKUjaQllu:undefined}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-em6Zy.framer-13tzlwk, .framer-em6Zy .framer-13tzlwk { display: block; }\",\".framer-em6Zy.framer-wpqjc9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-em6Zy .framer-9j7yd1-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 8px; position: absolute; right: 8px; top: 50%; z-index: 1; }\",\".framer-em6Zy .framer-14ia7js-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 40px; position: absolute; right: -24px; top: 105%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-em6Zy.framer-wpqjc9 { gap: 0px; } .framer-em6Zy.framer-wpqjc9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-em6Zy.framer-wpqjc9 > :first-child { margin-left: 0px; } .framer-em6Zy.framer-wpqjc9 > :last-child { margin-right: 0px; } }\",\".framer-em6Zy.framer-v-1r3w5qj .framer-9j7yd1-container { left: -24px; right: 40px; top: 105%; }\",\".framer-em6Zy.framer-v-1r3w5qj .framer-14ia7js-container { left: 8px; right: 8px; top: 50%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Gz_AJzdkd\":{\"layout\":[\"fixed\",\"fixed\"]},\"nNLrZPp02\":{\"layout\":[\"fixed\",\"fixed\"]},\"whGNWRtfB\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"hSIeOieZV\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbiC3coCGW=withCSS(Component,css,\"framer-em6Zy\");export default FramerbiC3coCGW;FramerbiC3coCGW.displayName=\"Theme_switcher\";FramerbiC3coCGW.defaultProps={height:40,width:40};addPropertyControls(FramerbiC3coCGW,{variant:{options:[\"BrcoDMsn4\",\"Gz_AJzdkd\"],optionTitles:[\"light\",\"dark\"],title:\"Variant\",type:ControlType.Enum},hSIeOieZV:{defaultValue:\"rgba(255, 255, 255, 0)\",title:\"Background\",type:ControlType.Color}});addFonts(FramerbiC3coCGW,[{explicitInter:true,fonts:[]},...IconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbiC3coCGW\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"hSIeOieZV\\\":\\\"background\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Gz_AJzdkd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nNLrZPp02\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"whGNWRtfB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on. By using `useConstant`\n * you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "// @ts-ignore\nimport{fontStore}from\"framer\";import{useEffect}from\"react\";import{fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";const fontWeights={100:\"Thin\",200:\"Extra-light\",300:\"Light\",400:\"Regular\",500:\"Medium\",600:\"Semi-bold\",700:\"Bold\",800:\"Extra-bold\",900:\"Black\"};export function useFontControls(props){const{fontFamily=\"Inter\",fontSize=16,fontWeight=400,font=false}=props;const fontWeightName=fontWeights[fontWeight];const customFontStack=`\"${fontFamily} ${fontWeightName}\", \"${fontFamily}\", ${fontStack}`;const fontFamilyStyle=fontFamily?{fontSize,fontWeight,fontFamily:customFontStack}:{fontSize,fontWeight};const fetchCustomFonts=async()=>{await fontStore.loadWebFontsFromSelectors([`CUSTOM;${fontFamily}`,`CUSTOM;${fontFamily} ${fontWeightName}`,`GF;${fontFamily}-${fontWeightName.toLowerCase()}`,]).catch(e=>console.error(e));};useEffect(()=>{if(font)fetchCustomFonts();},[font,fontFamily,fontWeight]);return fontFamilyStyle;}\nexport const __FramerMetadata__ = {\"exports\":{\"useFontControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useFontControls.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "// Generated by Framer (dbba614)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";import Icon from\"https://framerusercontent.com/modules/d1YRPy5o7U6ztm6HhbQT/gsnLTIiMeVQ1q1pexcGL/Q_D3nB09C.js\";const IconFonts=getFonts(Icon);const ClipboardFonts=getFonts(Clipboard);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const IconControls=getPropertyControls(Icon);const enabledGestures={ib4BSReao:{hover:true},KUSbSMTlN:{hover:true}};const cycleOrder=[\"ib4BSReao\",\"KUSbSMTlN\",\"kXBUs9k7H\",\"l4J3l_ix4\",\"KzbLW1tPd\"];const serializationHash=\"framer-9lmOr\";const variantClassNames={ib4BSReao:\"framer-v-1gx8x0t\",KUSbSMTlN:\"framer-v-1k7441u\",kXBUs9k7H:\"framer-v-1xqlyec\",KzbLW1tPd:\"framer-v-1liws8b\",l4J3l_ix4:\"framer-v-y9pfj2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:25,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:25,delay:0,mass:1,stiffness:250,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.15,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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={\"arrow-left\":\"AQ68sjrLp\",\"color-swatch\":\"a8zJKZRuE\",arrow_RT:\"CdMdCU5Xm\",close:\"dFiYvcJVE\",copy:\"HCp07CAEl\",dark:\"HgJmECPg_\",email:\"EHgC1P1Bt\",figma:\"wZyKRGb1w\",light:\"BMyHC3wNY\",Success:\"fbRqm0H4Y\",twitter:\"C7GiFvdes\",wechat:\"CO7kDPExN\"};const humanReadableVariantMap={\"copy-hover\":\"l4J3l_ix4\",\"Variant 5\":\"KzbLW1tPd\",close:\"KUSbSMTlN\",copy:\"kXBUs9k7H\",wechat:\"ib4BSReao\"};const getProps=({background,height,icon,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_humanReadableEnumMap_icon,_ref2,_ref3;return{...props,TOWX8hdZn:(_ref=background!==null&&background!==void 0?background:props.TOWX8hdZn)!==null&&_ref!==void 0?_ref:\"var(--token-d4f40ed6-d4a6-4607-87da-0745be5b21dc, rgba(237, 237, 237, 0.4))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ib4BSReao\",x1tNwkBwi:(_ref3=(_ref2=(_humanReadableEnumMap_icon=humanReadableEnumMap[icon])!==null&&_humanReadableEnumMap_icon!==void 0?_humanReadableEnumMap_icon:icon)!==null&&_ref2!==void 0?_ref2:props.x1tNwkBwi)!==null&&_ref3!==void 0?_ref3:\"dFiYvcJVE\"};};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,x1tNwkBwi,TOWX8hdZn,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ib4BSReao\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnternziqke=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"l4J3l_ix4\");});const onTapu6i5eh=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"KzbLW1tPd\");});const onMouseLeavexnbd75=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"kXBUs9k7H\");});const onAppear10ymks6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kXBUs9k7H\"),2e3);});useOnVariantChange(baseVariant,{KzbLW1tPd:onAppear10ymks6});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"kXBUs9k7H\",\"l4J3l_ix4\",\"KzbLW1tPd\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1gx8x0t\",className,classNames),\"data-framer-appear-id\":\"1gx8x0t\",\"data-framer-name\":\"wechat\",layoutDependency:layoutDependency,layoutId:\"ib4BSReao\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(8px)\",backgroundColor:TOWX8hdZn,borderBottomLeftRadius:95,borderBottomRightRadius:95,borderTopLeftRadius:95,borderTopRightRadius:95,boxShadow:\"none\",WebkitBackdropFilter:\"blur(8px)\",...style},variants:{\"ib4BSReao-hover\":{backgroundColor:\"var(--token-d4f40ed6-d4a6-4607-87da-0745be5b21dc, rgba(237, 237, 237, 0.6))\",boxShadow:\"0px 0.6021873017743928px 0.84306222248415px -1.5px rgba(24, 46, 74, 0.08518), 0px 2.288533303243457px 3.20394662454084px -3px rgba(24, 46, 74, 0.07169), 0px 10px 14px -4.5px rgba(24, 46, 74, 0.01), 0.05927785749023314px 0.6520564323925646px 2.749930412481013px -0.65px rgba(32, 65, 84, 0.01923), 0.1614293476421153px 1.7757228240632683px 7.488790778600001px -1.3px rgba(32, 65, 84, 0.01877), 0.3544404209329514px 3.8988446302624657px 16.442674114810714px -1.95px rgba(32, 65, 84, 0.01791), 0.7867768067278668px 8.654544874006534px 36.49898225508803px -2.6px rgba(32, 65, 84, 0.01596), 2px 22px 92.78103254437299px -3.25px rgba(32, 65, 84, 0.0105)\"},\"KUSbSMTlN-hover\":{backgroundColor:\"var(--token-d4f40ed6-d4a6-4607-87da-0745be5b21dc, rgba(230, 230, 230, 0.6))\",boxShadow:\"0px 0.6021873017743928px 0.84306222248415px -1.5px rgba(24, 46, 74, 0.08518), 0px 2.288533303243457px 3.20394662454084px -3px rgba(24, 46, 74, 0.07169), 0px 10px 14px -4.5px rgba(24, 46, 74, 0.01), 0.05927785749023314px 0.6520564323925646px 2.749930412481013px -0.65px rgba(32, 65, 84, 0.01923), 0.1614293476421153px 1.7757228240632683px 7.488790778600001px -1.3px rgba(32, 65, 84, 0.01877), 0.3544404209329514px 3.8988446302624657px 16.442674114810714px -1.95px rgba(32, 65, 84, 0.01791), 0.7867768067278668px 8.654544874006534px 36.49898225508803px -2.6px rgba(32, 65, 84, 0.01596), 2px 22px 92.78103254437299px -3.25px rgba(32, 65, 84, 0.0105)\"},KUSbSMTlN:{backgroundColor:\"rgba(230, 230, 230, 0)\"},KzbLW1tPd:{backgroundColor:\"var(--token-f759747a-c972-4203-8fc6-80268c2d8463, rgba(14, 216, 125, 0.1))\"}},...addPropertyOverrides({\"ib4BSReao-hover\":{__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-framer-name\":undefined,optimized:true},\"KUSbSMTlN-hover\":{\"data-framer-name\":undefined},KUSbSMTlN:{\"data-framer-name\":\"close\"},kXBUs9k7H:{\"data-framer-name\":\"copy\",\"data-highlight\":true,onMouseEnter:onMouseEnternziqke},KzbLW1tPd:{\"data-framer-name\":\"Variant 5\",\"data-highlight\":true,onMouseLeave:onMouseLeavexnbd75},l4J3l_ix4:{\"data-framer-name\":\"copy-hover\",\"data-highlight\":true,onMouseLeave:onMouseLeavexnbd75,onTap:onTapu6i5eh}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||54)*.5000000000000002-12),...addPropertyOverrides({\"ib4BSReao-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)*-.21874999999999978-12)},KzbLW1tPd:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)*-.222222222222222-12)},l4J3l_ix4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)*-.222222222222222-12)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nwn4lf-container\",layoutDependency:layoutDependency,layoutId:\"uECK_YcbQ-container\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"uECK_YcbQ\",layoutId:\"uECK_YcbQ\",style:{height:\"100%\",width:\"100%\"},variant:x1tNwkBwi,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||54)*1.2222222222222225-12),...addPropertyOverrides({\"ib4BSReao-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)*.5000000000000002-12)},KzbLW1tPd:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)*-.18749999999999978-12)},l4J3l_ix4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)*.5000000000000002-12)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o9yh4o-container\",layoutDependency:layoutDependency,layoutId:\"jZwaiiMeL-container\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"jZwaiiMeL\",layoutId:\"jZwaiiMeL\",style:{height:\"100%\",width:\"100%\"},variant:\"CdMdCU5Xm\",width:\"100%\",...addPropertyOverrides({kXBUs9k7H:{variant:\"HCp07CAEl\"},KzbLW1tPd:{variant:\"HCp07CAEl\"},l4J3l_ix4:{variant:\"HCp07CAEl\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({kXBUs9k7H:{height:24,width:\"24px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||54)*1.2222222222222225-12)},KzbLW1tPd:{height:24,width:\"24px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)*.5000000000000002-12)},l4J3l_ix4:{height:24,width:\"24px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)*1.1875000000000002-12)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-68f2fn-container\",layoutDependency:layoutDependency,layoutId:\"xkf2CgrLn-container\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"xkf2CgrLn\",layoutId:\"xkf2CgrLn\",style:{height:\"100%\",width:\"100%\"},variant:\"HCp07CAEl\",width:\"100%\",...addPropertyOverrides({kXBUs9k7H:{variant:\"fbRqm0H4Y\"},KzbLW1tPd:{variant:\"fbRqm0H4Y\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rgi3w-container\",layoutDependency:layoutDependency,layoutId:\"hyddqC6Ee-container\",children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:50,bottomLeftRadius:50,bottomRightRadius:50,color:\"rgba(255, 255, 255, 0)\",content:\"_Ddesigner\",fill:\"rgba(255, 255, 255, 0.01)\",font:{},height:\"100%\",id:\"hyddqC6Ee\",isMixedBorderRadius:false,label:\"\",layoutId:\"hyddqC6Ee\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,style:{height:\"100%\",width:\"100%\"},topLeftRadius:50,topRightRadius:50,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9lmOr.framer-1mgezhi, .framer-9lmOr .framer-1mgezhi { display: block; }\",\".framer-9lmOr.framer-1gx8x0t { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 54px; justify-content: center; overflow: hidden; padding: 0.5px 0px 0.5px 0px; position: relative; width: 54px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9lmOr .framer-1nwn4lf-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; z-index: 1; }\",\".framer-9lmOr .framer-o9yh4o-container { flex: none; height: 24px; left: calc(-22.2222222222222% - 24px / 2); position: absolute; top: calc(122.22222222222226% - 24px / 2); width: 24px; z-index: 1; }\",\".framer-9lmOr .framer-68f2fn-container { flex: none; height: 24px; left: calc(118.75000000000003% - 24px / 2); position: absolute; top: calc(-18.74999999999998% - 24px / 2); width: 24px; z-index: 1; }\",\".framer-9lmOr .framer-1rgi3w-container { flex: none; height: 98%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 98.4375% / 2); width: 100%; z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9lmOr.framer-1gx8x0t { gap: 0px; } .framer-9lmOr.framer-1gx8x0t > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9lmOr.framer-1gx8x0t > :first-child { margin-left: 0px; } .framer-9lmOr.framer-1gx8x0t > :last-child { margin-right: 0px; } }\",\".framer-9lmOr.framer-v-1xqlyec.framer-1gx8x0t { cursor: unset; }\",\".framer-9lmOr.framer-v-1xqlyec .framer-68f2fn-container { left: calc(-22.2222222222222% - 24px / 2); top: calc(122.22222222222226% - 24px / 2); }\",\".framer-9lmOr.framer-v-y9pfj2.framer-1gx8x0t { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); width: 64px; }\",\".framer-9lmOr.framer-v-y9pfj2 .framer-1nwn4lf-container, .framer-9lmOr.framer-v-1liws8b .framer-1nwn4lf-container { left: calc(122.22222222222226% - 24px / 2); top: calc(-22.2222222222222% - 24px / 2); }\",\".framer-9lmOr.framer-v-y9pfj2 .framer-o9yh4o-container, .framer-9lmOr.framer-v-1liws8b .framer-68f2fn-container, .framer-9lmOr.framer-v-1gx8x0t.hover .framer-o9yh4o-container { left: calc(50.00000000000002% - 24px / 2); top: calc(50.00000000000002% - 24px / 2); }\",\".framer-9lmOr.framer-v-y9pfj2 .framer-68f2fn-container { left: calc(-18.74999999999998% - 24px / 2); top: calc(118.75000000000003% - 24px / 2); }\",\".framer-9lmOr.framer-v-1liws8b.framer-1gx8x0t { aspect-ratio: 1 / 1; cursor: unset; height: var(--framer-aspect-ratio-supported, 64px); width: 64px; }\",\".framer-9lmOr.framer-v-1liws8b .framer-o9yh4o-container { left: calc(121.87500000000003% - 24px / 2); top: calc(-18.74999999999998% - 24px / 2); }\",\".framer-9lmOr.framer-v-1gx8x0t.hover.framer-1gx8x0t { height: 64px; width: 64px; }\",\".framer-9lmOr.framer-v-1gx8x0t.hover .framer-1nwn4lf-container { left: calc(121.87500000000003% - 24px / 2); top: calc(-21.87499999999998% - 24px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 54\n * @framerIntrinsicWidth 54\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KUSbSMTlN\":{\"layout\":[\"fixed\",\"fixed\"]},\"kXBUs9k7H\":{\"layout\":[\"fixed\",\"fixed\"]},\"l4J3l_ix4\":{\"layout\":[\"fixed\",\"fixed\"]},\"KzbLW1tPd\":{\"layout\":[\"fixed\",\"fixed\"]},\"JgP_KPOjV\":{\"layout\":[\"fixed\",\"fixed\"]},\"osz95TfvJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"x1tNwkBwi\":\"icon\",\"TOWX8hdZn\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkV3YYc6B8=withCSS(Component,css,\"framer-9lmOr\");export default FramerkV3YYc6B8;FramerkV3YYc6B8.displayName=\"button_icon\";FramerkV3YYc6B8.defaultProps={height:54,width:54};addPropertyControls(FramerkV3YYc6B8,{variant:{options:[\"ib4BSReao\",\"KUSbSMTlN\",\"kXBUs9k7H\",\"l4J3l_ix4\",\"KzbLW1tPd\"],optionTitles:[\"wechat\",\"close\",\"copy\",\"copy-hover\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum},x1tNwkBwi:(IconControls===null||IconControls===void 0?void 0:IconControls[\"variant\"])&&{...IconControls[\"variant\"],defaultValue:\"dFiYvcJVE\",description:undefined,hidden:undefined,title:\"icon\"},TOWX8hdZn:{defaultValue:'var(--token-d4f40ed6-d4a6-4607-87da-0745be5b21dc, rgba(237, 237, 237, 0.4)) /* {\"name\":\"nav-bg\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerkV3YYc6B8,[{explicitInter:true,fonts:[]},...IconFonts,...ClipboardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkV3YYc6B8\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KUSbSMTlN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kXBUs9k7H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l4J3l_ix4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KzbLW1tPd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JgP_KPOjV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"osz95TfvJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"x1tNwkBwi\\\":\\\"icon\\\",\\\"TOWX8hdZn\\\":\\\"background\\\"}\",\"framerIntrinsicWidth\":\"54\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"54\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["FrameSwitcher", "lightVersion", "darkVersion", "backgroundColor", "cornerRadius", "overflow", "isDarkMode", "setIsDarkMode", "ye", "dimensions", "setDimensions", "updateTheme", "currentTheme", "ue", "mediaQuery", "window", "handleChange", "e", "handleThemeChange", "p", "addPropertyControls", "ControlType", "getOSTheme", "window", "setInitialState", "osTheme", "currentToggleState", "styleTag", "newCSS", "themeSwictherBasedOnSystem", "Component", "props", "isOn", "setIsOn", "ye", "toggle", "newToggleState", "ue", "e", "newTheme", "currentOsTheme", "isClient", "setIsClient", "p", "IconFonts", "getFonts", "Q_D3nB09C_default", "MotionDivThemeSwictherBasedOnSystem", "themeSwictherBasedOnSystem", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hSIeOieZV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerbiC3coCGW", "withCSS", "biC3coCGW_default", "addPropertyControls", "ControlType", "addFonts", "fontStack", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "useConstant", "init", "ref", "pe", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "fontWeights", "useFontControls", "props", "fontFamily", "fontSize", "fontWeight", "font", "fontWeightName", "customFontStack", "fontStack", "fontFamilyStyle", "fetchCustomFonts", "fontStore", "e", "ue", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "usePadding", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControl", "Clipboard", "props", "label", "content", "fill", "color", "style", "onClick", "font", "hoverOptions", "rest", "deprecatedFont", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "defaultEvents", "IconFonts", "getFonts", "Q_D3nB09C_default", "ClipboardFonts", "Clipboard", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "IconControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "background", "height", "icon", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_humanReadableEnumMap_icon", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "x1tNwkBwi", "TOWX8hdZn", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnternziqke", "args", "onTapu6i5eh", "onMouseLeavexnbd75", "onAppear10ymks6", "useOnVariantChange", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerkV3YYc6B8", "withCSS", "kV3YYc6B8_default", "addPropertyControls", "ControlType", "addFonts"]
}
