{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/mJeMpwckXiJBYeuH0uyB/aeQssMKIFzoH7xzd0b8c/ThemeToggle.js", "ssg:https://framerusercontent.com/modules/yADid7ZbXaFjoXcJjDnR/whh9zI4vQHlwfOXUwC2A/Toggle_Theme.js", "ssg:https://framerusercontent.com/modules/iK4PD651JYh0LT3jgqna/4lYm92i7ygZGMPDlRiza/g00qHfmVf.js", "ssg:https://framerusercontent.com/modules/0ckiAjswSLfgegMvuiLM/ottXygN3Pn7Sn4QXNErP/oNCg3bqFE.js", "ssg:https://framerusercontent.com/modules/iXpT6vPyLjnQ7oMIF8U7/WngBvX1l4Ocu7qrgEsEl/YbiFpFIWX.js", "ssg:https://framerusercontent.com/modules/z6jTiLOZcocPk0UWf86K/KuAhn7RbGAe27OVgbXnJ/B3NWMxUWt.js", "ssg:https://framerusercontent.com/modules/04JmtarsxSW0VYuZnsXS/4Jvmv1Cov3zA8zxmcwTF/iyKADY7kj.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({theme:\"\"});const changeTheme=theme=>{const htmlElement=document.getElementsByTagName(\"html\")[0];const bodyElement=document.getElementsByTagName(\"body\")[0];htmlElement.setAttribute(\"toggle-theme\",`${theme}`);bodyElement.setAttribute(\"toggle-theme\",`${theme}`);if(theme===\"system\"){localStorage.getItem(\"theme\")&&localStorage.removeItem(\"theme\");}else{localStorage.setItem(\"theme\",`${theme}`);}const event=new Event(\"themeChange\");window.dispatchEvent(event);// console.log(event)\nreturn;};export function withToggleTheme(Component){return props=>{const[store,setStore]=useStore();// Detect theme and setup stylesheets on mount\nuseEffect(()=>{const updateTheme=()=>{const prefersDarkScheme=window.matchMedia(\"(prefers-color-scheme: dark)\");const prefersLightScheme=window.matchMedia(\"(prefers-color-scheme: light)\");// If true set theme to system otherwise set it to light\nconst detectedTheme=prefersDarkScheme.matches||prefersLightScheme.matches?\"system\":\"light\";// Store the theme\nsetStore({theme:`${detectedTheme}`});};updateTheme();// Create attributes on html and body so that theme will be applied based on store\nconst htmlElement=document.getElementsByTagName(\"html\")[0];const bodyElement=document.getElementsByTagName(\"body\")[0];htmlElement&&htmlElement.setAttribute(\"toggle-theme\",`${store.theme}`);bodyElement&&bodyElement.setAttribute(\"toggle-theme\",`${store.theme}`);// Create sets of light and dark mode tokens\nlet lightThemeTokens=[];let darkThemeTokens=[];for(let i=0;i<document.styleSheets.length;i++){const sheet=document.styleSheets[i];try{for(let rule of sheet.cssRules){// Get light and dark mode tokens\nif(rule.selectorText===\"body\"){const style=rule.style;for(let j=0;j<style.length;j++){const propertyName=style[j];if(propertyName.includes(\"--token\")){const value=style.getPropertyValue(propertyName);// Check for specific tokens or list all\nconst combinedCssRule=`${propertyName}: ${value};`;lightThemeTokens.push(combinedCssRule);}}lightThemeTokens=lightThemeTokens.join(\" \");}else if(rule.conditionText===\"(prefers-color-scheme: dark)\"){const cssTextIgnore=\"body:not([data-framer-theme])\";if(!rule.cssText.includes(cssTextIgnore)){const mediaRulesString=rule.cssRules[0].cssText.replace(\"body\",\"\").replace(/\\s*{\\s*/,\"\").replace(/\\s*}\\s*$/,\"\");darkThemeTokens=mediaRulesString;}}}}catch(e){console.warn(\"Cannot access stylesheet:\",sheet.href);}}// Create styleSheet with id and populate with correct CSS text\nlet styleElement=document.createElement(\"style\");styleElement.id=\"toggle-theme\";const customCssRule=`body[toggle-theme=\"light\"] {${lightThemeTokens}} body[toggle-theme=\"dark\"]{${darkThemeTokens}} html[toggle-theme=\"light\"] { color-scheme: light; } html[toggle-theme=\"dark\"] { color-scheme: dark; }`;styleElement.textContent=customCssRule;document.head.appendChild(styleElement);},[]);return /*#__PURE__*/_jsx(Component,{...props});};}export function withLightTheme(Component){return props=>{const[store,setStore]=useStore();// Handle the click\nconst clickLightTheme=()=>{setStore({theme:\"light\"});changeTheme(\"light\");};return /*#__PURE__*/_jsx(Component,{...props,variant:store.theme===\"light\"?\"Active\":\"Inactive\",whileHover:{scale:1.2},onClick:clickLightTheme});};}export function withDarkTheme(Component){return props=>{const[store,setStore]=useStore();const clickDarkTheme=()=>{// Storing the mode\nsetStore({theme:\"dark\"});changeTheme(\"dark\");};return /*#__PURE__*/_jsx(Component,{...props,variant:store.theme===\"dark\"?\"Active\":\"Inactive\",whileHover:{scale:1.2},onClick:clickDarkTheme});};}export function withSystemTheme(Component){return props=>{const[store,setStore]=useStore();const clickSystemTheme=()=>{if(store.theme===\"system\"){return;}else{// Store the theme choice\nsetStore({theme:\"system\"});changeTheme(\"system\");}};return /*#__PURE__*/_jsx(Component,{...props,variant:store.theme===\"system\"?\"Active\":\"Inactive\",onClick:clickSystemTheme,whileHover:{scale:1.2}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withToggleTheme\":{\"type\":\"reactHoc\",\"name\":\"withToggleTheme\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSystemTheme\":{\"type\":\"reactHoc\",\"name\":\"withSystemTheme\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLightTheme\":{\"type\":\"reactHoc\",\"name\":\"withLightTheme\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDarkTheme\":{\"type\":\"reactHoc\",\"name\":\"withDarkTheme\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ThemeToggle.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({theme:\"\"});const changeTheme=theme=>{const htmlElement=document.getElementsByTagName(\"html\")[0];const bodyElement=document.getElementsByTagName(\"body\")[0];htmlElement.setAttribute(\"toggle-theme\",`${theme}`);bodyElement.setAttribute(\"toggle-theme\",`${theme}`);if(theme===\"system\"){localStorage.getItem(\"theme\")&&localStorage.removeItem(\"theme\");}else{localStorage.setItem(\"theme\",`${theme}`);}const event=new Event(\"themeChange\");window.dispatchEvent(event);// console.log(event)\nreturn;};export function withToggleTheme(Component){return props=>{const[store,setStore]=useStore();// Detect theme and setup stylesheets on mount\nuseEffect(()=>{const updateTheme=()=>{const prefersDarkScheme=window.matchMedia(\"(prefers-color-scheme: dark)\");const prefersLightScheme=window.matchMedia(\"(prefers-color-scheme: light)\");// If true set theme to system otherwise set it to light\nconst detectedTheme=prefersDarkScheme.matches||prefersLightScheme.matches?\"system\":\"light\";// Store the theme\nsetStore({theme:`${detectedTheme}`});};updateTheme();// Create attributes on html and body so that theme will be applied based on store\nconst htmlElement=document.getElementsByTagName(\"html\")[0];const bodyElement=document.getElementsByTagName(\"body\")[0];htmlElement&&htmlElement.setAttribute(\"toggle-theme\",`${store.theme}`);bodyElement&&bodyElement.setAttribute(\"toggle-theme\",`${store.theme}`);// Create sets of light and dark mode tokens\nlet lightThemeTokens=[];let darkThemeTokens=[];for(let i=0;i<document.styleSheets.length;i++){const sheet=document.styleSheets[i];try{for(let rule of sheet.cssRules){// Get light and dark mode tokens\nif(rule.selectorText===\"body\"){const style=rule.style;for(let j=0;j<style.length;j++){const propertyName=style[j];if(propertyName.includes(\"--token\")){const value=style.getPropertyValue(propertyName);// Check for specific tokens or list all\nconst combinedCssRule=`${propertyName}: ${value};`;lightThemeTokens.push(combinedCssRule);}}lightThemeTokens=lightThemeTokens.join(\" \");}else if(rule.conditionText===\"(prefers-color-scheme: dark)\"){const cssTextIgnore=\"body:not([data-framer-theme])\";if(!rule.cssText.includes(cssTextIgnore)){const mediaRulesString=rule.cssRules[0].cssText.replace(\"body\",\"\").replace(/\\s*{\\s*/,\"\").replace(/\\s*}\\s*$/,\"\");darkThemeTokens=mediaRulesString;}}}}catch(e){console.warn(\"Cannot access stylesheet:\",sheet.href);}}// Create styleSheet with id and populate with correct CSS text\nlet styleElement=document.createElement(\"style\");styleElement.id=\"toggle-theme\";const customCssRule=`body[toggle-theme=\"light\"] {${lightThemeTokens}} body[toggle-theme=\"dark\"]{${darkThemeTokens}} html[toggle-theme=\"light\"] { color-scheme: light; } html[toggle-theme=\"dark\"] { color-scheme: dark; }`;styleElement.textContent=customCssRule;document.head.appendChild(styleElement);},[]);return /*#__PURE__*/_jsx(Component,{...props});};}export function withLightTheme(Component){return props=>{const[store,setStore]=useStore();// Handle the click\nconst clickLightTheme=()=>{setStore({theme:\"light\"});changeTheme(\"light\");};return /*#__PURE__*/_jsx(Component,{...props,variant:store.theme===\"light\"?\"Active\":\"Inactive\",whileHover:{scale:1.2},onClick:clickLightTheme});};}export function withDarkTheme(Component){return props=>{const[store,setStore]=useStore();const clickDarkTheme=()=>{// Storing the mode\nsetStore({theme:\"dark\"});changeTheme(\"dark\");};return /*#__PURE__*/_jsx(Component,{...props,variant:store.theme===\"dark\"?\"Active\":\"Inactive\",whileHover:{scale:1.2},onClick:clickDarkTheme});};}export function withSystemTheme(Component){return props=>{const[store,setStore]=useStore();const clickSystemTheme=()=>{if(store.theme===\"system\"){return;}else{// Store the theme choice\nsetStore({theme:\"system\"});changeTheme(\"system\");}};return /*#__PURE__*/_jsx(Component,{...props,variant:store.theme===\"system\"?\"Active\":\"Inactive\",onClick:clickSystemTheme,whileHover:{scale:1.2}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withLightTheme\":{\"type\":\"reactHoc\",\"name\":\"withLightTheme\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDarkTheme\":{\"type\":\"reactHoc\",\"name\":\"withDarkTheme\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSystemTheme\":{\"type\":\"reactHoc\",\"name\":\"withSystemTheme\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withToggleTheme\":{\"type\":\"reactHoc\",\"name\":\"withToggleTheme\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Toggle_Theme.map", "// Generated by Framer (2b47498)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"cIk9MW_a0\",\"w1wYS9ZMa\"];const serializationHash=\"framer-1B2zt\";const variantClassNames={cIk9MW_a0:\"framer-v-b68lmw\",w1wYS9ZMa:\"framer-v-wihu06\"};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:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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={Bold:\"bold\",Duotone:\"duotone\",Fill:\"fill\",Light:\"light\",Regular:\"regular\",Thin:\"thin\"};const humanReadableVariantMap={Active:\"cIk9MW_a0\",Inactive:\"w1wYS9ZMa\"};const getProps=({active,height,icon,id,inActive,weightFill,weightRegular,width,...props})=>{var _humanReadableEnumMap_weightRegular,_ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_humanReadableEnumMap_weightFill,_ref6,_ref7;return{...props,C8Ww8F5ZP:(_ref1=(_ref=(_humanReadableEnumMap_weightRegular=humanReadableEnumMap[weightRegular])!==null&&_humanReadableEnumMap_weightRegular!==void 0?_humanReadableEnumMap_weightRegular:weightRegular)!==null&&_ref!==void 0?_ref:props.C8Ww8F5ZP)!==null&&_ref1!==void 0?_ref1:\"regular\",G6irDsNeL:(_ref2=active!==null&&active!==void 0?active:props.G6irDsNeL)!==null&&_ref2!==void 0?_ref2:\"rgb(255, 255, 255)\",pRHizpZ48:(_ref3=icon!==null&&icon!==void 0?icon:props.pRHizpZ48)!==null&&_ref3!==void 0?_ref3:\"Moon\",Q5dMDAlEN:(_ref4=inActive!==null&&inActive!==void 0?inActive:props.Q5dMDAlEN)!==null&&_ref4!==void 0?_ref4:\"rgb(115, 115, 115)\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"cIk9MW_a0\",WA8k1PXV8:(_ref7=(_ref6=(_humanReadableEnumMap_weightFill=humanReadableEnumMap[weightFill])!==null&&_humanReadableEnumMap_weightFill!==void 0?_humanReadableEnumMap_weightFill:weightFill)!==null&&_ref6!==void 0?_ref6:props.WA8k1PXV8)!==null&&_ref7!==void 0?_ref7:\"fill\"};};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,pRHizpZ48,Q5dMDAlEN,G6irDsNeL,WA8k1PXV8,C8Ww8F5ZP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cIk9MW_a0\",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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-b68lmw\",className,classNames),\"data-framer-name\":\"Active\",layoutDependency:layoutDependency,layoutId:\"cIk9MW_a0\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({w1wYS9ZMa:{\"data-framer-name\":\"Inactive\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fu0wgo-container\",layoutDependency:layoutDependency,layoutId:\"m23H6ydKi-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:G6irDsNeL,height:\"100%\",iconSearch:\"House\",iconSelection:pRHizpZ48,id:\"m23H6ydKi\",layoutId:\"m23H6ydKi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:WA8k1PXV8,width:\"100%\",...addPropertyOverrides({w1wYS9ZMa:{color:Q5dMDAlEN,weight:C8Ww8F5ZP}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1B2zt.framer-47tvgp, .framer-1B2zt .framer-47tvgp { display: block; }\",\".framer-1B2zt.framer-b68lmw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-1B2zt .framer-1fu0wgo-container { flex: none; height: 15px; position: relative; width: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1B2zt.framer-b68lmw { gap: 0px; } .framer-1B2zt.framer-b68lmw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1B2zt.framer-b68lmw > :first-child { margin-left: 0px; } .framer-1B2zt.framer-b68lmw > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15\n * @framerIntrinsicWidth 15\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"w1wYS9ZMa\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"pRHizpZ48\":\"icon\",\"Q5dMDAlEN\":\"inActive\",\"G6irDsNeL\":\"active\",\"WA8k1PXV8\":\"weightFill\",\"C8Ww8F5ZP\":\"weightRegular\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg00qHfmVf=withCSS(Component,css,\"framer-1B2zt\");export default Framerg00qHfmVf;Framerg00qHfmVf.displayName=\"ToggleButton\";Framerg00qHfmVf.defaultProps={height:15,width:15};addPropertyControls(Framerg00qHfmVf,{variant:{options:[\"cIk9MW_a0\",\"w1wYS9ZMa\"],optionTitles:[\"Active\",\"Inactive\"],title:\"Variant\",type:ControlType.Enum},pRHizpZ48:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Moon\",description:undefined,hidden:undefined,title:\"Icon\"},Q5dMDAlEN:{defaultValue:\"rgb(115, 115, 115)\",title:\"InActive\",type:ControlType.Color},G6irDsNeL:{defaultValue:\"rgb(255, 255, 255)\",title:\"Active\",type:ControlType.Color},WA8k1PXV8:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"weight\"])&&{...PhosphorControls[\"weight\"],defaultValue:\"fill\",description:undefined,hidden:undefined,title:\"Weight Fill\"},C8Ww8F5ZP:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"weight\"])&&{...PhosphorControls[\"weight\"],defaultValue:\"regular\",description:undefined,hidden:undefined,title:\"Weight Regular\"}});addFonts(Framerg00qHfmVf,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg00qHfmVf\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"15\",\"framerVariables\":\"{\\\"pRHizpZ48\\\":\\\"icon\\\",\\\"Q5dMDAlEN\\\":\\\"inActive\\\",\\\"G6irDsNeL\\\":\\\"active\\\",\\\"WA8k1PXV8\\\":\\\"weightFill\\\",\\\"C8Ww8F5ZP\\\":\\\"weightRegular\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"15\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"w1wYS9ZMa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g00qHfmVf.map", "// Generated by Framer (d95cfb1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"tsvmO2EbN\",\"sP6foa60A\"];const serializationHash=\"framer-nu8NH\";const variantClassNames={sP6foa60A:\"framer-v-171qqh1\",tsvmO2EbN:\"framer-v-zwvl63\"};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:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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(React.Fragment);const humanReadableEnumMap={Bold:\"bold\",Duotone:\"duotone\",Fill:\"fill\",Light:\"light\",Regular:\"regular\",Thin:\"thin\"};const humanReadableVariantMap={Active:\"sP6foa60A\",InActive:\"tsvmO2EbN\"};const getProps=({active,height,icon,id,inActive,tap2,weightFill,weightRegular,width,...props})=>{var _humanReadableEnumMap_weightFill,_ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_humanReadableEnumMap_weightRegular,_ref6,_ref7;return{...props,B8tBss2IJ:(_ref1=(_ref=(_humanReadableEnumMap_weightFill=humanReadableEnumMap[weightFill])!==null&&_humanReadableEnumMap_weightFill!==void 0?_humanReadableEnumMap_weightFill:weightFill)!==null&&_ref!==void 0?_ref:props.B8tBss2IJ)!==null&&_ref1!==void 0?_ref1:\"fill\",DmZuttgZL:tap2!==null&&tap2!==void 0?tap2:props.DmZuttgZL,G6irDsNeL:(_ref2=active!==null&&active!==void 0?active:props.G6irDsNeL)!==null&&_ref2!==void 0?_ref2:\"rgb(255, 255, 255)\",pRHizpZ48:(_ref3=icon!==null&&icon!==void 0?icon:props.pRHizpZ48)!==null&&_ref3!==void 0?_ref3:\"Sun\",Q5dMDAlEN:(_ref4=inActive!==null&&inActive!==void 0?inActive:props.Q5dMDAlEN)!==null&&_ref4!==void 0?_ref4:\"rgb(115, 115, 115)\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"tsvmO2EbN\",WA8k1PXV8:(_ref7=(_ref6=(_humanReadableEnumMap_weightRegular=humanReadableEnumMap[weightRegular])!==null&&_humanReadableEnumMap_weightRegular!==void 0?_humanReadableEnumMap_weightRegular:weightRegular)!==null&&_ref6!==void 0?_ref6:props.WA8k1PXV8)!==null&&_ref7!==void 0?_ref7:\"regular\"};};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,pRHizpZ48,Q5dMDAlEN,G6irDsNeL,WA8k1PXV8,DmZuttgZL,B8tBss2IJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tsvmO2EbN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1gcel9p=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(DmZuttgZL){const res=await DmZuttgZL(...args);if(res===false)return false;}});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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zwvl63\",className,classNames),\"data-framer-name\":\"InActive\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tsvmO2EbN\",onTap:onTap1gcel9p,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({sP6foa60A:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jr2ul3-container\",layoutDependency:layoutDependency,layoutId:\"mCgrFXitJ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:Q5dMDAlEN,height:\"100%\",iconSearch:\"House\",iconSelection:pRHizpZ48,id:\"mCgrFXitJ\",layoutId:\"mCgrFXitJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:WA8k1PXV8,width:\"100%\",...addPropertyOverrides({sP6foa60A:{color:G6irDsNeL,weight:B8tBss2IJ}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nu8NH.framer-okg1r4, .framer-nu8NH .framer-okg1r4 { display: block; }\",\".framer-nu8NH.framer-zwvl63 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-nu8NH .framer-jr2ul3-container { flex: none; height: 15px; position: relative; width: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nu8NH.framer-zwvl63 { gap: 0px; } .framer-nu8NH.framer-zwvl63 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nu8NH.framer-zwvl63 > :first-child { margin-left: 0px; } .framer-nu8NH.framer-zwvl63 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15\n * @framerIntrinsicWidth 15\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"sP6foa60A\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"pRHizpZ48\":\"icon\",\"Q5dMDAlEN\":\"inActive\",\"G6irDsNeL\":\"active\",\"WA8k1PXV8\":\"weightRegular\",\"DmZuttgZL\":\"tap2\",\"B8tBss2IJ\":\"weightFill\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroNCg3bqFE=withCSS(Component,css,\"framer-nu8NH\");export default FrameroNCg3bqFE;FrameroNCg3bqFE.displayName=\"ToggleButton Copy\";FrameroNCg3bqFE.defaultProps={height:15,width:15};addPropertyControls(FrameroNCg3bqFE,{variant:{options:[\"tsvmO2EbN\",\"sP6foa60A\"],optionTitles:[\"InActive\",\"Active\"],title:\"Variant\",type:ControlType.Enum},pRHizpZ48:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Sun\",description:undefined,hidden:undefined,title:\"Icon\"},Q5dMDAlEN:{defaultValue:\"rgb(115, 115, 115)\",title:\"InActive\",type:ControlType.Color},G6irDsNeL:{defaultValue:\"rgb(255, 255, 255)\",title:\"Active\",type:ControlType.Color},WA8k1PXV8:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"weight\"])&&{...PhosphorControls[\"weight\"],defaultValue:\"regular\",description:undefined,hidden:undefined,title:\"Weight Regular\"},DmZuttgZL:{title:\"Tap 2\",type:ControlType.EventHandler},B8tBss2IJ:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"weight\"])&&{...PhosphorControls[\"weight\"],defaultValue:\"fill\",description:undefined,hidden:undefined,title:\"Weight Fill\"}});addFonts(FrameroNCg3bqFE,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroNCg3bqFE\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sP6foa60A\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"pRHizpZ48\\\":\\\"icon\\\",\\\"Q5dMDAlEN\\\":\\\"inActive\\\",\\\"G6irDsNeL\\\":\\\"active\\\",\\\"WA8k1PXV8\\\":\\\"weightRegular\\\",\\\"DmZuttgZL\\\":\\\"tap2\\\",\\\"B8tBss2IJ\\\":\\\"weightFill\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"15\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"15\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oNCg3bqFE.map", "// Generated by Framer (2b47498)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withDarkTheme,withLightTheme}from\"https://framerusercontent.com/modules/mJeMpwckXiJBYeuH0uyB/aeQssMKIFzoH7xzd0b8c/ThemeToggle.js\";import{withToggleTheme}from\"https://framerusercontent.com/modules/yADid7ZbXaFjoXcJjDnR/whh9zI4vQHlwfOXUwC2A/Toggle_Theme.js\";import ToggleButton,*as ToggleButtonInfo from\"https://framerusercontent.com/modules/iK4PD651JYh0LT3jgqna/4lYm92i7ygZGMPDlRiza/g00qHfmVf.js\";import ToggleButtonCopy,*as ToggleButtonCopyInfo from\"https://framerusercontent.com/modules/0ckiAjswSLfgegMvuiLM/ottXygN3Pn7Sn4QXNErP/oNCg3bqFE.js\";const ToggleButtonFonts=getFonts(ToggleButton);const ToggleButtonWithDarkThemeWithMappedReactPropsa7nn8f=withMappedReactProps(withDarkTheme(ToggleButton),ToggleButtonInfo);const ToggleButtonCopyFonts=getFonts(ToggleButtonCopy);const ToggleButtonCopyWithLightThemeWithMappedReactPropse13ew7=withMappedReactProps(withLightTheme(ToggleButtonCopy),ToggleButtonCopyInfo);const MotionDivWithToggleTheme=withToggleTheme(motion.div);const cycleOrder=[\"raKNRKwT7\",\"cJ2s9V3tV\"];const serializationHash=\"framer-4fPv2\";const variantClassNames={cJ2s9V3tV:\"framer-v-1jy01o\",raKNRKwT7:\"framer-v-s65l8b\"};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={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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 Mode On\":\"raKNRKwT7\",\"Light Mode On\":\"cJ2s9V3tV\"};const getProps=({activeColor,height,hover,id,inactiveColor,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,ap8tRvNEV:(_ref=activeColor!==null&&activeColor!==void 0?activeColor:props.ap8tRvNEV)!==null&&_ref!==void 0?_ref:\"rgb(255, 255, 255)\",OaN0yhC5A:hover!==null&&hover!==void 0?hover:props.OaN0yhC5A,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"raKNRKwT7\",w0swZ910C:(_ref2=inactiveColor!==null&&inactiveColor!==void 0?inactiveColor:props.w0swZ910C)!==null&&_ref2!==void 0?_ref2:\"rgb(115, 115, 115)\"};};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,ap8tRvNEV,w0swZ910C,FoNgi4rUl,JZRwA9XP6,OaN0yhC5A,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"raKNRKwT7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1s1yu3v=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(OaN0yhC5A){const res=await OaN0yhC5A(...args);if(res===false)return false;}});const onTap1e9xkga=activeVariantCallback(async(...args)=>{setVariant(\"raKNRKwT7\");});const onTap10xn3ac=activeVariantCallback(async(...args)=>{setVariant(\"cJ2s9V3tV\");});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__*/_jsx(MotionDivWithToggleTheme,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-s65l8b\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Dark Mode On\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"raKNRKwT7\",onMouseEnter:onMouseEnter1s1yu3v,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(59, 59, 59)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({cJ2s9V3tV:{\"data-framer-name\":\"Light Mode On\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12ft03v\",layoutDependency:layoutDependency,layoutId:\"vpo6trRFK\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16pvrpk\",layoutDependency:layoutDependency,layoutId:\"zB3ZC5_ih\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},variants:{cJ2s9V3tV:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({cJ2s9V3tV:{\"data-highlight\":true,onTap:onTap1e9xkga}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,width:\"15px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(4+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||31)-8-23)/2)+0+4,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iprlxm-container\",layoutDependency:layoutDependency,layoutId:\"mr4rVwiLQ-container\",children:/*#__PURE__*/_jsx(ToggleButtonWithDarkThemeWithMappedReactPropsa7nn8f,{C8Ww8F5ZP:\"fill\",G6irDsNeL:ap8tRvNEV,height:\"100%\",id:\"mr4rVwiLQ\",layoutId:\"mr4rVwiLQ\",pRHizpZ48:\"Moon\",Q5dMDAlEN:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"cIk9MW_a0\",WA8k1PXV8:\"fill\",width:\"100%\",...addPropertyOverrides({cJ2s9V3tV:{C8Ww8F5ZP:\"regular\",G6irDsNeL:\"rgb(255, 255, 255)\",Q5dMDAlEN:w0swZ910C,variant:\"w1wYS9ZMa\",WA8k1PXV8:\"regular\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hzqa1y\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"bkuMzZlHF\",onTap:onTap10xn3ac,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},variants:{cJ2s9V3tV:{backgroundColor:\"rgba(0, 0, 0, 0.5)\"}},...addPropertyOverrides({cJ2s9V3tV:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(4+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||31)-8-23)/2)+0+4,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1obo2a5-container\",layoutDependency:layoutDependency,layoutId:\"HTXGdGWM8-container\",children:/*#__PURE__*/_jsx(ToggleButtonCopyWithLightThemeWithMappedReactPropse13ew7,{B8tBss2IJ:\"regular\",G6irDsNeL:\"rgb(255, 255, 255)\",height:\"100%\",id:\"HTXGdGWM8\",layoutId:\"HTXGdGWM8\",pRHizpZ48:FoNgi4rUl,Q5dMDAlEN:w0swZ910C,variant:\"sP6foa60A\",WA8k1PXV8:JZRwA9XP6,width:\"100%\",...addPropertyOverrides({cJ2s9V3tV:{B8tBss2IJ:\"fill\",G6irDsNeL:ap8tRvNEV,Q5dMDAlEN:\"rgb(115, 115, 115)\"}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4fPv2.framer-mnwu5h, .framer-4fPv2 .framer-mnwu5h { display: block; }\",\".framer-4fPv2.framer-s65l8b { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 4px; position: relative; width: min-content; }\",\".framer-4fPv2 .framer-12ft03v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4fPv2 .framer-16pvrpk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 5px 4px 5px; position: relative; width: min-content; }\",\".framer-4fPv2 .framer-1iprlxm-container { flex: none; height: 15px; position: relative; width: 15px; }\",\".framer-4fPv2 .framer-1hzqa1y { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 5px 4px 5px; position: relative; width: min-content; }\",\".framer-4fPv2 .framer-1obo2a5-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4fPv2.framer-s65l8b, .framer-4fPv2 .framer-12ft03v, .framer-4fPv2 .framer-16pvrpk, .framer-4fPv2 .framer-1hzqa1y { gap: 0px; } .framer-4fPv2.framer-s65l8b > *, .framer-4fPv2 .framer-16pvrpk > *, .framer-4fPv2 .framer-1hzqa1y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4fPv2.framer-s65l8b > :first-child, .framer-4fPv2 .framer-12ft03v > :first-child, .framer-4fPv2 .framer-16pvrpk > :first-child, .framer-4fPv2 .framer-1hzqa1y > :first-child { margin-left: 0px; } .framer-4fPv2.framer-s65l8b > :last-child, .framer-4fPv2 .framer-12ft03v > :last-child, .framer-4fPv2 .framer-16pvrpk > :last-child, .framer-4fPv2 .framer-1hzqa1y > :last-child { margin-right: 0px; } .framer-4fPv2 .framer-12ft03v > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } }\",\".framer-4fPv2.framer-v-1jy01o .framer-16pvrpk { cursor: pointer; }\",\".framer-4fPv2.framer-v-1jy01o .framer-1hzqa1y { cursor: unset; }\",'.framer-4fPv2[data-border=\"true\"]::after, .framer-4fPv2 [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 31\n * @framerIntrinsicWidth 61\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"cJ2s9V3tV\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ap8tRvNEV\":\"activeColor\",\"w0swZ910C\":\"inactiveColor\",\"OaN0yhC5A\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYbiFpFIWX=withCSS(Component,css,\"framer-4fPv2\");export default FramerYbiFpFIWX;FramerYbiFpFIWX.displayName=\"ThemeToggle\";FramerYbiFpFIWX.defaultProps={height:31,width:61};addPropertyControls(FramerYbiFpFIWX,{variant:{options:[\"raKNRKwT7\",\"cJ2s9V3tV\"],optionTitles:[\"Dark Mode On\",\"Light Mode On\"],title:\"Variant\",type:ControlType.Enum},ap8tRvNEV:{defaultValue:\"rgb(255, 255, 255)\",title:\"Active Color\",type:ControlType.Color},w0swZ910C:{defaultValue:\"rgb(115, 115, 115)\",title:\"Inactive Color\",type:ControlType.Color},OaN0yhC5A:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerYbiFpFIWX,[{explicitInter:true,fonts:[]},...ToggleButtonFonts,...ToggleButtonCopyFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYbiFpFIWX\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"31\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"ap8tRvNEV\\\":\\\"activeColor\\\",\\\"w0swZ910C\\\":\\\"inactiveColor\\\",\\\"OaN0yhC5A\\\":\\\"hover\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cJ2s9V3tV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"61\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YbiFpFIWX.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SF Pro Display Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SF Pro Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/JlbZvh2zfRZAGLbtHVY830OtpU.woff2\"}]}];export const css=['.framer-xsqgz .framer-styles-preset-sm9emw:not(.rich-text-wrapper), .framer-xsqgz .framer-styles-preset-sm9emw.rich-text-wrapper h5 { --framer-font-family: \"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-e5f5e733-785d-45d9-a833-fb169d95e4bc, #000000); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-xsqgz .framer-styles-preset-sm9emw:not(.rich-text-wrapper), .framer-xsqgz .framer-styles-preset-sm9emw.rich-text-wrapper h5 { --framer-font-family: \"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-e5f5e733-785d-45d9-a833-fb169d95e4bc, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-xsqgz .framer-styles-preset-sm9emw:not(.rich-text-wrapper), .framer-xsqgz .framer-styles-preset-sm9emw.rich-text-wrapper h5 { --framer-font-family: \"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 19px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-e5f5e733-785d-45d9-a833-fb169d95e4bc, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-xsqgz\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d2515d1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-yK4eZ .framer-styles-preset-16nm7no:not(.rich-text-wrapper), .framer-yK4eZ .framer-styles-preset-16nm7no.rich-text-wrapper a { --framer-link-current-text-color: var(--token-e5f5e733-785d-45d9-a833-fb169d95e4bc, #000000) /* {\"name\":\"Text Theme\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #7d7d7d; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-e5f5e733-785d-45d9-a833-fb169d95e4bc, #000000); --framer-link-text-decoration: none; }'];export const className=\"framer-yK4eZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "changeTheme", "theme", "htmlElement", "bodyElement", "event", "window", "withLightTheme", "Component", "props", "store", "setStore", "useStore", "clickLightTheme", "changeTheme", "p", "withDarkTheme", "clickDarkTheme", "useStore", "createStore", "withToggleTheme", "Component", "props", "store", "setStore", "useStore", "ue", "prefersDarkScheme", "window", "prefersLightScheme", "detectedTheme", "htmlElement", "bodyElement", "lightThemeTokens", "darkThemeTokens", "i", "sheet", "rule", "style", "j", "propertyName", "value", "combinedCssRule", "cssTextIgnore", "styleElement", "customCssRule", "p", "g00qHfmVf_exports", "__export", "__FramerMetadata__", "g00qHfmVf_default", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "active", "height", "icon", "id", "inActive", "weightFill", "weightRegular", "width", "props", "_humanReadableEnumMap_weightRegular", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_humanReadableEnumMap_weightFill", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pRHizpZ48", "Q5dMDAlEN", "G6irDsNeL", "WA8k1PXV8", "C8Ww8F5ZP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "Framerg00qHfmVf", "withCSS", "g00qHfmVf_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "oNCg3bqFE_exports", "__export", "__FramerMetadata__", "oNCg3bqFE_default", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "active", "height", "icon", "id", "inActive", "tap2", "weightFill", "weightRegular", "width", "props", "_humanReadableEnumMap_weightFill", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_humanReadableEnumMap_weightRegular", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pRHizpZ48", "Q5dMDAlEN", "G6irDsNeL", "WA8k1PXV8", "DmZuttgZL", "B8tBss2IJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1gcel9p", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FrameroNCg3bqFE", "withCSS", "oNCg3bqFE_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "ToggleButtonFonts", "getFonts", "g00qHfmVf_default", "ToggleButtonWithDarkThemeWithMappedReactPropsa7nn8f", "withMappedReactProps", "withDarkTheme", "g00qHfmVf_exports", "ToggleButtonCopyFonts", "oNCg3bqFE_default", "ToggleButtonCopyWithLightThemeWithMappedReactPropse13ew7", "withLightTheme", "oNCg3bqFE_exports", "MotionDivWithToggleTheme", "withToggleTheme", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "activeColor", "height", "hover", "id", "inactiveColor", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ap8tRvNEV", "w0swZ910C", "FoNgi4rUl", "JZRwA9XP6", "OaN0yhC5A", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1s1yu3v", "args", "onTap1e9xkga", "onTap10xn3ac", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "css", "FramerYbiFpFIWX", "withCSS", "YbiFpFIWX_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className"]
}
