{"version":3,"file":"O4VHldUW4.CYycgyJk.mjs","names":["useState","useMemo","SVG","getProps","SVGCC","React.useContext","React.useMemo","React.Fragment","Account","useRef","React.useId","Image"],"sources":["https:/framerusercontent.com/modules/51gMBWb879ei7hlEcm9R/S6r3e8zWuMjdPYaTt5lB/SVG.js","https:/framerusercontent.com/modules/53NoiizrkyvieKMrtz9Y/0Tw20ellLIoe695BXD6X/ZA_eranEZ.js","https:/framerusercontent.com/modules/P217HglUAX6zd5OAQUia/Ftn31y99VHpJbynz7InV/O4VHldUW4.js"],"sourcesContent":["// SVG Viewer with pasteable SVG code and fill color control\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useMemo,useState}from\"react\";/**\n * SVG Viewer\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function SVG(props){const{svgCode,fill,style,ariaLabel,role,tabIndex,link,linkTarget}=props;// Replace all fill attributes in the SVG code with the selected fill color\nconst processedSvg=useMemo(()=>{if(!svgCode)return\"\";// Replace fill attributes and inline styles\nlet code=svgCode.replace(/fill\\s*=\\s*['\\\"][^'\\\"]*['\\\"]/gi,`fill=\"${fill}\"`).replace(/fill:\\s*[^;\"']+([;\"'])/gi,`fill: ${fill}$1`);// If no fill attribute exists, add it to the <svg> tag\nif(!/fill\\s*=/.test(code)){code=code.replace(/<svg([^>]*)>/i,`<svg$1 fill=\"${fill}\">`);}return code;},[svgCode,fill]);const content=processedSvg?/*#__PURE__*/_jsx(\"span\",{style:{width:\"100%\",height:\"100%\",display:\"block\",padding:0,margin:0,lineHeight:0},dangerouslySetInnerHTML:{__html:processedSvg}}):/*#__PURE__*/_jsx(\"span\",{style:{color:\"#888\"},children:\"Paste SVG code…\"});const[isHovered,setIsHovered]=useState(false);const effectiveFill=link&&isHovered&&props.hoverFill?props.hoverFill:fill;const processedSvgWithHover=useMemo(()=>{if(!svgCode)return\"\";let code=svgCode.replace(/fill\\s*=\\s*['\\\"][^'\\\"]*['\\\"]/gi,`fill=\"${effectiveFill}\"`).replace(/fill:\\s*[^;\"']+([;\"'])/gi,`fill: ${effectiveFill}$1`);if(!/fill\\s*=/.test(code)){code=code.replace(/<svg([^>]*)>/i,`<svg$1 fill=\"${effectiveFill}\">`);}return code;},[svgCode,effectiveFill]);const contentWithHover=processedSvgWithHover?/*#__PURE__*/_jsx(\"span\",{style:{width:\"100%\",height:\"100%\",display:\"block\",padding:0,margin:0,lineHeight:0},dangerouslySetInnerHTML:{__html:processedSvgWithHover}}):/*#__PURE__*/_jsx(\"span\",{style:{color:\"#888\"},children:\"Paste SVG code…\"});return link?/*#__PURE__*/_jsx(\"a\",{href:link,target:linkTarget||\"_self\",rel:linkTarget===\"_blank\"?\"noopener noreferrer\":undefined,style:{display:\"inline-block\",width:\"max-content\",height:\"max-content\",textDecoration:\"none\"},\"aria-label\":ariaLabel,role:role||\"img\",tabIndex:typeof tabIndex===\"number\"?tabIndex:undefined,onMouseEnter:()=>setIsHovered(true),onMouseLeave:()=>setIsHovered(false),children:contentWithHover}):/*#__PURE__*/_jsx(\"div\",{style:{width:\"max-content\",height:\"max-content\",display:\"block\",position:\"relative\",padding:0,margin:0,lineHeight:0,...style},\"aria-label\":ariaLabel,role:role||\"img\",tabIndex:typeof tabIndex===\"number\"?tabIndex:undefined,children:contentWithHover});}SVG.displayName=\"SVG (CC)\";addPropertyControls(SVG,{svgCode:{type:ControlType.String,title:\"SVG Code\",description:\"Paste your SVG code here. Only the SVG markup is needed.\",displayTextArea:true,placeholder:\"Paste SVG code here…\",defaultValue:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"24\" cy=\"24\" r=\"20\"/></svg>'},link:{type:ControlType.Link,title:\"Link\",description:\"Add a URL to make the SVG a clickable link.\",defaultValue:\"\"},linkTarget:{type:ControlType.Enum,title:\"Link Target\",description:\"Choose whether the link opens in the same tab or a new tab.\",options:[\"_self\",\"_blank\"],optionTitles:[\"Same Tab\",\"New Tab\"],defaultValue:\"_self\",hidden:({link})=>!link},fill:{type:ControlType.Color,title:\"Fill Color\",description:\"Set the fill color for the SVG graphic.\",defaultValue:\"#222222\"},hoverFill:{type:ControlType.Color,title:\"Fill Hover Color\",description:\"Fill color used on hover (only applies if Link is set). Leave empty to disable.\",optional:true,hidden:({link})=>!link},ariaLabel:{type:ControlType.String,title:\"ARIA Label\",description:\"Describe the SVG for screen readers. For 'button', use an action (e.g., 'Open menu'). For 'link', describe the destination (e.g., 'Go to homepage'). Leave empty for decorative images.\",defaultValue:\"SVG graphic\",placeholder:\"Describe the SVG for screen readers…\"},role:{type:ControlType.Enum,title:\"ARIA Role\",description:\"Choose the ARIA role for accessibility.\\n- 'img': for meaningful images/graphics (aria-label describes the image)\\n- 'presentation': for decorative images (leave aria-label empty)\\n- 'button': for interactive elements that perform an action (aria-label should describe the action, e.g., 'Open menu')\\n- 'link': for navigation (aria-label should describe the destination, e.g., 'Go to homepage')\",options:[\"img\",\"presentation\",\"button\",\"link\"],optionTitles:[\"Image (img)\",\"Decorative (presentation)\",\"Button\",\"Link\"],defaultValue:\"img\"},tabIndex:{type:ControlType.Number,title:\"Tab Index\",description:\"Set the tab order for keyboard navigation. Use -1 to remove from tab order.\",defaultValue:undefined,min:-1,max:10,step:1,placeholder:\"Tab order\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map","// Generated by Framer (5ce16c9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,cx,motion,withCSS}from\"framer\";import*as React from\"react\";import{forwardRef}from\"react\";const mask='url(\\'data:image/svg+xml,<svg display=\"block\" role=\"presentation\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M 8 16 C 3.582 16 0 12.418 0 8 C 0 3.582 3.582 0 8 0 C 12.418 0 16 3.582 16 8 C 16 12.418 12.418 16 8 16 Z M 8.502 1.498 C 8.502 1.22 8.277 0.996 8 0.996 C 7.723 0.996 7.498 1.22 7.498 1.498 C 7.498 1.775 7.723 1.999 8 1.999 C 8.277 1.999 8.502 1.775 8.502 1.498 Z M 8 15.004 C 8.277 15.004 8.502 14.78 8.502 14.503 C 8.502 14.226 8.277 14.001 8 14.001 C 7.723 14.001 7.498 14.226 7.498 14.503 C 7.498 14.78 7.723 15.004 8 15.004 Z M 5.973 1.801 C 5.866 1.545 5.573 1.424 5.317 1.53 C 5.061 1.636 4.94 1.93 5.046 2.186 C 5.152 2.442 5.445 2.563 5.701 2.457 C 5.957 2.351 6.079 2.057 5.973 1.801 Z M 10.683 14.47 C 10.939 14.364 11.06 14.07 10.954 13.815 C 10.848 13.559 10.555 13.437 10.299 13.543 C 10.043 13.649 9.921 13.943 10.027 14.199 C 10.134 14.455 10.427 14.576 10.683 14.47 Z M 3.762 3.043 C 3.566 2.847 3.249 2.846 3.053 3.042 C 2.857 3.238 2.856 3.555 3.052 3.751 C 3.248 3.948 3.565 3.948 3.761 3.752 C 3.957 3.557 3.958 3.239 3.762 3.043 Z M 12.947 12.958 C 13.143 12.763 13.144 12.445 12.948 12.249 C 12.752 12.053 12.435 12.052 12.239 12.248 C 12.043 12.444 12.042 12.761 12.238 12.957 C 12.434 13.154 12.751 13.154 12.947 12.958 Z M 2.186 5.045 C 1.93 4.939 1.636 5.061 1.53 5.317 C 1.424 5.572 1.546 5.866 1.801 5.972 C 2.057 6.078 2.351 5.957 2.457 5.701 C 2.563 5.445 2.442 5.152 2.186 5.045 Z M 14.47 10.684 C 14.576 10.428 14.455 10.134 14.199 10.028 C 13.943 9.922 13.649 10.043 13.543 10.299 C 13.437 10.555 13.558 10.849 13.814 10.955 C 14.07 11.061 14.364 10.939 14.47 10.684 Z M 10.937 2.202 C 11.054 1.951 10.945 1.652 10.694 1.535 C 10.443 1.418 10.145 1.527 10.028 1.778 C 9.911 2.029 10.019 2.327 10.27 2.445 C 10.521 2.562 10.82 2.453 10.937 2.202 Z M 5.306 14.465 C 5.557 14.582 5.855 14.473 5.973 14.222 C 6.09 13.971 5.981 13.673 5.73 13.556 C 5.479 13.438 5.18 13.547 5.063 13.798 C 4.946 14.049 5.055 14.348 5.306 14.465 Z M 12.938 3.774 C 13.143 3.587 13.157 3.27 12.97 3.066 C 12.784 2.861 12.466 2.847 12.262 3.034 C 12.057 3.221 12.043 3.538 12.23 3.742 C 12.417 3.947 12.734 3.961 12.938 3.774 Z M 3.03 12.935 C 3.217 13.139 3.534 13.153 3.739 12.967 C 3.943 12.78 3.957 12.462 3.771 12.258 C 3.584 12.053 3.266 12.039 3.062 12.226 C 2.857 12.413 2.843 12.73 3.03 12.935 Z M 14.201 5.97 C 14.456 5.862 14.576 5.568 14.468 5.312 C 14.36 5.057 14.066 4.938 13.811 5.045 C 13.556 5.153 13.436 5.447 13.544 5.703 C 13.652 5.958 13.946 6.077 14.201 5.97 Z M 1.532 10.688 C 1.64 10.943 1.934 11.063 2.189 10.955 C 2.445 10.847 2.564 10.553 2.456 10.298 C 2.349 10.042 2.054 9.923 1.799 10.031 C 1.544 10.138 1.424 10.433 1.532 10.688 Z M 1.497 7.498 C 1.22 7.498 0.996 7.723 0.996 8 C 0.996 8.277 1.22 8.502 1.497 8.502 C 1.774 8.502 1.999 8.277 1.999 8 C 1.999 7.723 1.774 7.498 1.497 7.498 Z M 15.004 8 C 15.004 7.723 14.78 7.498 14.503 7.498 C 14.226 7.498 14.001 7.723 14.001 8 C 14.001 8.277 14.226 8.502 14.503 8.502 C 14.78 8.502 15.004 8.277 15.004 8 Z M 12.488 8 C 12.488 5.522 10.478 3.512 8 3.512 C 5.522 3.512 3.512 5.522 3.512 8 C 3.512 10.478 5.522 12.488 8 12.488 C 10.478 12.488 12.488 10.478 12.488 8 Z M 8 11.494 C 6.07 11.494 4.506 9.93 4.506 8 C 4.506 6.07 6.07 4.506 8 4.506 C 9.93 4.506 11.494 6.07 11.494 8 C 11.494 9.93 9.93 11.494 8 11.494 Z\" fill=\"var(--cw4o0w, var(--token-91e12927-f730-4ad8-8635-2e26773a2895, rgb(115, 115, 115)))\" height=\"16px\" id=\"mFB1LKXXP\" transform=\"translate(4 4)\" width=\"16px\"/></svg>\\') alpha no-repeat center / auto var(--framer-icon-mask-mode, add), var(--framer-icon-mask, none)';const SVG=/*#__PURE__*/forwardRef((props,ref)=>{const{animated,layoutId,children,...rest}=props;return animated?/*#__PURE__*/_jsx(motion.div,{...rest,layoutId:layoutId,ref:ref}):/*#__PURE__*/_jsx(\"div\",{...rest,ref:ref});});const getProps=({color,height,id,width,...props})=>{return{...props,lbmW0WRc3:color??props.lbmW0WRc3??\"var(--token-91e12927-f730-4ad8-8635-2e26773a2895, rgb(115, 115, 115))\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{style,className,layoutId,variant,lbmW0WRc3,...restProps}=getProps(props);return /*#__PURE__*/_jsx(SVG,{...restProps,className:cx(\"framer-PB0A8\",className),layoutId:layoutId,ref:ref,style:{\"--cw4o0w\":lbmW0WRc3,...style}});});const css=[`.framer-PB0A8 { -webkit-mask: ${mask}; aspect-ratio: 1; background-color: var(--cw4o0w); mask: ${mask}; width: 24px; }`];/**\n * This is a generated Framer component.\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerVariables {\"lbmW0WRc3\":\"color\"}\n * @framerImmutableVariables true\n * @framerVector {\"name\":\"Account\",\"color\":{\"type\":\"variable\",\"value\":\"cw4o0w\"},\"set\":{\"localId\":\"vectorSet/iwWAtndGI\",\"id\":\"iwWAtndGI\",\"moduleId\":\"7yMwNLPciiLrZPLxdCqa\"}}\n */const Icon=withCSS(Component,css,\"framer-PB0A8\");Icon.displayName=\"Account\";export default Icon;addPropertyControls(Icon,{lbmW0WRc3:{defaultValue:'var(--token-91e12927-f730-4ad8-8635-2e26773a2895, rgb(115, 115, 115)) /* {\"name\":\"gray-500\"} */',hidden:false,title:\"Color\",type:ControlType.Color}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"lbmW0WRc3\\\":\\\"color\\\"}\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerVector\":\"{\\\"name\\\":\\\"Account\\\",\\\"color\\\":{\\\"type\\\":\\\"variable\\\",\\\"value\\\":\\\"cw4o0w\\\"},\\\"set\\\":{\\\"localId\\\":\\\"vectorSet/iwWAtndGI\\\",\\\"id\\\":\\\"iwWAtndGI\\\",\\\"moduleId\\\":\\\"7yMwNLPciiLrZPLxdCqa\\\"}}\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (5ce16c9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Instance,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVGCC from\"https://framerusercontent.com/modules/51gMBWb879ei7hlEcm9R/S6r3e8zWuMjdPYaTt5lB/SVG.js\";import Account from\"https://framerusercontent.com/modules/53NoiizrkyvieKMrtz9Y/0Tw20ellLIoe695BXD6X/ZA_eranEZ.js\";const SVGCCFonts=getFonts(SVGCC);const cycleOrder=[\"F3mBmI5iw\",\"rPylkoiTm\",\"T_YNzmqtE\",\"OoDEvC12L\"];const serializationHash=\"framer-XP1a7\";const variantClassNames={F3mBmI5iw:\"framer-v-1xookwj\",OoDEvC12L:\"framer-v-ye5mgx\",rPylkoiTm:\"framer-v-3ji5pb\",T_YNzmqtE:\"framer-v-1d4u6oh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Emoji:\"OoDEvC12L\",Image:\"T_YNzmqtE\",SVG:\"rPylkoiTm\",Vector:\"F3mBmI5iw\"};const getProps=({color,emoji,emojiSize,height,icon,id,image,sVGCode,width,...props})=>{return{...props,hVsHnWTjM:sVGCode??props.hVsHnWTjM??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 5.45455C8.38505 5.45455 5.45455 8.38505 5.45455 12C5.45455 15.615 8.38505 18.5455 12 18.5455C15.615 18.5455 18.5455 15.615 18.5455 12C18.5455 8.38505 15.615 5.45455 12 5.45455ZM4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12Z\" fill=\"white\"/>\\n</svg>',lOHplpMSQ:image??props.lOHplpMSQ??{alt:\"\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/kg8gcaANxKQypWngDxIJa85Zw.svg?width=24&height=24\"},Nh_CBHdmw:emoji??props.Nh_CBHdmw??\"🚀\",qpf81SYnL:emojiSize??props.qpf81SYnL??24,Soq3IjUzX:color??props.Soq3IjUzX??\"var(--token-4c8fdb06-2aad-4bd6-a9e9-03457bbf8b80, rgb(0, 128, 255))\",sTAUmCDdW:icon??props.sTAUmCDdW??Account,variant:humanReadableVariantMap[props.variant]??props.variant??\"F3mBmI5iw\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Soq3IjUzX,sTAUmCDdW,hVsHnWTjM,lOHplpMSQ,Nh_CBHdmw,qpf81SYnL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"F3mBmI5iw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"rPylkoiTm\",\"T_YNzmqtE\",\"OoDEvC12L\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"rPylkoiTm\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"T_YNzmqtE\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"OoDEvC12L\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1xookwj\",className,classNames),\"data-framer-name\":\"Vector\",layoutDependency:layoutDependency,layoutId:\"F3mBmI5iw\",ref:refBinding,style:{...style},tabIndex:-1,...addPropertyOverrides({OoDEvC12L:{\"data-framer-name\":\"Emoji\"},rPylkoiTm:{\"data-framer-name\":\"SVG\"},T_YNzmqtE:{\"data-framer-name\":\"Image\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Instance,{animated:true,className:\"framer-e073yv\",Component:sTAUmCDdW,layoutDependency:layoutDependency,layoutId:\"sNmyCp4gf\",style:{\"--cw4o0w\":Soq3IjUzX}}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c15xp6-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"HZ75SUFQe-container\",nodeId:\"HZ75SUFQe\",rendersWithMotion:true,scopeId:\"O4VHldUW4\",children:/*#__PURE__*/_jsx(SVGCC,{ariaLabel:\"\",fill:Soq3IjUzX,height:\"100%\",id:\"HZ75SUFQe\",layoutId:\"HZ75SUFQe\",linkTarget:\"_self\",role:\"presentation\",svgCode:hVsHnWTjM,tabIndex:-1,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:24,pixelWidth:24,...toResponsiveImage(lOHplpMSQ)},className:\"framer-1i8ifdr\",layoutDependency:layoutDependency,layoutId:\"zaIFKFM4L\",...addPropertyOverrides({T_YNzmqtE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:24,pixelWidth:24,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(lOHplpMSQ)}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-qpf81SYnL-O4VHldUW4) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-tcooor, rgb(247, 247, 247))\"},children:\"🚀\"})}),className:\"framer-qsiyz3\",fonts:[\"FS;Montserrat-bold\"],layoutDependency:layoutDependency,layoutId:\"jtW86iYcI\",style:{\"--extracted-tcooor\":\"rgb(247, 247, 247)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-qpf81SYnL-O4VHldUW4\":qpf81SYnL},text:Nh_CBHdmw,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XP1a7.framer-l0ob7f, .framer-XP1a7 .framer-l0ob7f { display: block; }\",\".framer-XP1a7.framer-1xookwj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-XP1a7 .framer-e073yv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; width: calc(100% - 0px); z-index: 1; }\",\".framer-XP1a7 .framer-1c15xp6-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-XP1a7 .framer-1i8ifdr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-XP1a7 .framer-qsiyz3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-XP1a7.framer-v-3ji5pb.framer-1xookwj, .framer-XP1a7.framer-v-1d4u6oh.framer-1xookwj, .framer-XP1a7.framer-v-ye5mgx.framer-1xookwj { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rPylkoiTm\":{\"layout\":[\"fixed\",\"fixed\"]},\"T_YNzmqtE\":{\"layout\":[\"fixed\",\"fixed\"]},\"OoDEvC12L\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Soq3IjUzX\":\"color\",\"sTAUmCDdW\":\"icon\",\"hVsHnWTjM\":\"sVGCode\",\"lOHplpMSQ\":\"image\",\"Nh_CBHdmw\":\"emoji\",\"qpf81SYnL\":\"emojiSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerVectorSets [\"7yMwNLPciiLrZPLxdCqa\"]\n */const FramerO4VHldUW4=withCSS(Component,css,\"framer-XP1a7\");export default FramerO4VHldUW4;FramerO4VHldUW4.displayName=\"Icon\";FramerO4VHldUW4.defaultProps={height:24,width:24};addPropertyControls(FramerO4VHldUW4,{variant:{options:[\"F3mBmI5iw\",\"rPylkoiTm\",\"T_YNzmqtE\",\"OoDEvC12L\"],optionTitles:[\"Vector\",\"SVG\",\"Image\",\"Emoji\"],title:\"Variant\",type:ControlType.Enum},Soq3IjUzX:{defaultValue:'var(--token-4c8fdb06-2aad-4bd6-a9e9-03457bbf8b80, rgb(0, 128, 255)) /* {\"name\":\"blue-500\"} */',title:\"Color\",type:ControlType.Color},sTAUmCDdW:{defaultValue:{identifier:\"local-module:vector/ZA_eranEZ:default\",moduleId:\"53NoiizrkyvieKMrtz9Y\"},setModuleId:\"7yMwNLPciiLrZPLxdCqa\",title:\"Icon\",type:ControlType.VectorSetItem},hVsHnWTjM:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 5.45455C8.38505 5.45455 5.45455 8.38505 5.45455 12C5.45455 15.615 8.38505 18.5455 12 18.5455C15.615 18.5455 18.5455 15.615 18.5455 12C18.5455 8.38505 15.615 5.45455 12 5.45455ZM4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12Z\" fill=\"white\"/>\\n</svg>',displayTextArea:true,title:\"SVG Code\",type:ControlType.String},lOHplpMSQ:{__defaultAssetReference:\"data:framer/asset-reference,kg8gcaANxKQypWngDxIJa85Zw.svg?originalFilename=image.svg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,kg8gcaANxKQypWngDxIJa85Zw.svg?originalFilename=image.svg&preferredSize=auto\"},description:\"\",title:\"Image\",type:ControlType.ResponsiveImage},Nh_CBHdmw:{defaultValue:\"🚀\",displayTextArea:false,title:\"Emoji\",type:ControlType.String},qpf81SYnL:{defaultValue:24,title:\"Emoji Size\",type:ControlType.Number}});addFonts(FramerO4VHldUW4,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"}]},...SVGCCFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO4VHldUW4\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"24\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerVectorSets\":\"[\\\"7yMwNLPciiLrZPLxdCqa\\\"]\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rPylkoiTm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"T_YNzmqtE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OoDEvC12L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Soq3IjUzX\\\":\\\"color\\\",\\\"sTAUmCDdW\\\":\\\"icon\\\",\\\"hVsHnWTjM\\\":\\\"sVGCode\\\",\\\"lOHplpMSQ\\\":\\\"image\\\",\\\"Nh_CBHdmw\\\":\\\"emoji\\\",\\\"qpf81SYnL\\\":\\\"emojiSize\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}