{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/puvIA10C3rpyq5Nj0ekM/jppVMnQ0f9706qwL0Zqu/eeqd4Cl6D.js", "ssg:https://framerusercontent.com/modules/KsMqUIUrou6HHUUgPMgr/phsbq6Sa8TwyzYGdbake/c_kAy9hnm.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (139b156)\nimport{jsx as _jsx}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 SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const cycleOrder=[\"LL120CvHr\",\"gVPs89Jpd\",\"nEC88_Kxp\",\"a3_2Llw7V\"];const serializationHash=\"framer-shsDg\";const variantClassNames={a3_2Llw7V:\"framer-v-19pv45h\",gVPs89Jpd:\"framer-v-1uld05p\",LL120CvHr:\"framer-v-14kr807\",nEC88_Kxp:\"framer-v-1pdwkzi\"};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:.2,delay:0,duration:.4,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 humanReadableVariantMap={Bell:\"a3_2Llw7V\",Call:\"gVPs89Jpd\",Chat:\"LL120CvHr\",Home:\"nEC88_Kxp\"};const getProps=({color,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,B0H1XxL8y:(_ref=color!==null&&color!==void 0?color:props.B0H1XxL8y)!==null&&_ref!==void 0?_ref:\"rgb(0, 0, 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:\"LL120CvHr\"};};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,B0H1XxL8y,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LL120CvHr\",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-14kr807\",className,classNames),\"data-framer-name\":\"Chat\",layoutDependency:layoutDependency,layoutId:\"LL120CvHr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({a3_2Llw7V:{\"data-framer-name\":\"Bell\"},gVPs89Jpd:{\"data-framer-name\":\"Call\"},nEC88_Kxp:{\"data-framer-name\":\"Home\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l927cv-container\",layoutDependency:layoutDependency,layoutId:\"qoLF0z2ak-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:B0H1XxL8y,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-1 -1 18 18\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-chat-fill\"><path d=\"M8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6-.097 1.016-.417 2.13-.771 2.966-.079.186.074.394.273.362 2.256-.37 3.597-.938 4.18-1.234A9 9 0 0 0 8 15\"/></svg>',description:\"\",height:\"100%\",id:\"qoLF0z2ak\",layoutId:\"qoLF0z2ak\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({a3_2Llw7V:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"26\" height=\"26\" viewBox=\"1 1 22 22\" fill=\"none\"> <g clip-path=\"url(#clip0_16813_14515)\"> <path d=\"M7.57979 4.08L6.14979 2.65C3.74978 4.48 2.16979 7.3 2.02979 10.5H4.02979C4.17979 7.85 5.53979 5.53 7.57979 4.08ZM19.9698 10.5H21.9698C21.8198 7.3 20.2398 4.48 17.8498 2.65L16.4298 4.08C18.4498 5.53 19.8198 7.85 19.9698 10.5ZM17.9998 11C17.9998 7.93 16.3598 5.36 13.4998 4.68V4C13.4998 3.17 12.8298 2.5 11.9998 2.5C11.1698 2.5 10.4998 3.17 10.4998 4V4.68C7.62979 5.36 5.99979 7.92 5.99979 11V16L3.99979 18V19H19.9998V18L17.9998 16V11ZM11.9998 22C12.1398 22 12.2698 21.99 12.3998 21.96C13.0498 21.82 13.5798 21.38 13.8398 20.78C13.9398 20.54 13.9898 20.28 13.9898 20H9.98979C9.99979 21.1 10.8898 22 11.9998 22Z\" fill=\"#5F6368\"/> </g> <defs> <clipPath id=\"clip0_16813_14515\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>'},gVPs89Jpd:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-1 -1 18 18\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-telephone-fill\"><path fill-rule=\"evenodd\" d=\"M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z\"/></svg>'},nEC88_Kxp:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"26\" height=\"26\" viewBox=\"0 0 26 26\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.303 4.02531C13.1051 3.96769 12.895 3.96769 12.6971 4.02531C12.6402 4.04189 12.5401 4.08338 12.3273 4.24455C12.1034 4.41405 11.8293 4.65663 11.4022 5.03624L5.72599 10.0818C5.0301 10.7004 4.83283 10.8869 4.69569 11.0932C4.56376 11.2916 4.46547 11.5105 4.40479 11.741C4.34171 11.9805 4.33337 12.2519 4.33337 13.1829V18.6007C4.33337 19.5443 4.33425 20.1858 4.3754 20.6813C4.41547 21.1638 4.48807 21.4102 4.57731 21.582C4.78288 21.9777 5.10554 22.3004 5.50127 22.5059C5.67306 22.5952 5.91939 22.6678 6.40195 22.7078C6.89747 22.749 7.53893 22.7499 8.48254 22.7499H8.66671V19.4999C8.66671 17.1066 10.6068 15.1665 13 15.1665C15.3933 15.1665 17.3334 17.1066 17.3334 19.4999V22.7499H17.5175C18.4611 22.7499 19.1026 22.749 19.5981 22.7078C20.0807 22.6678 20.327 22.5952 20.4988 22.5059C20.8945 22.3004 21.2172 21.9777 21.4228 21.582C21.512 21.4102 21.5846 21.1638 21.6247 20.6813C21.6658 20.1858 21.6667 19.5443 21.6667 18.6007V13.1829C21.6667 12.2519 21.6584 11.9805 21.5953 11.741C21.5346 11.5105 21.4363 11.2916 21.3044 11.0932C21.1673 10.8869 20.97 10.7004 20.2741 10.0818L14.5978 5.03624C14.1708 4.65663 13.8967 4.41405 13.6728 4.24455C13.4599 4.08338 13.3599 4.04189 13.303 4.02531ZM12.0913 1.94506C12.6848 1.77222 13.3153 1.77222 13.9088 1.94506C14.3206 2.06499 14.6621 2.2759 14.9807 2.51714C15.2808 2.74433 15.6187 3.04473 16.0078 3.39064L21.7136 8.46242C21.7443 8.48972 21.7746 8.51665 21.8045 8.54324C22.3697 9.04506 22.7966 9.42416 23.1088 9.8937C23.3726 10.2906 23.5692 10.7283 23.6905 11.1893C23.8341 11.7345 23.8338 12.3054 23.8334 13.0612C23.8334 13.1013 23.8334 13.1418 23.8334 13.1829V18.6462C23.8334 19.5329 23.8334 20.2648 23.7839 20.8606C23.7325 21.4796 23.6222 22.0481 23.3455 22.5807C22.9344 23.3722 22.2891 24.0175 21.4976 24.4287C20.965 24.7053 20.3964 24.8157 19.7774 24.8671C19.1816 24.9166 18.4498 24.9165 17.563 24.9165H17.1221C17.1137 24.9165 17.1053 24.9165 17.0966 24.9165C16.9654 24.9166 16.8087 24.9166 16.6708 24.9052C16.5108 24.8919 16.2817 24.8578 16.0426 24.7336C15.7458 24.5794 15.5038 24.3374 15.3497 24.0406C15.2255 23.8015 15.1913 23.5725 15.178 23.4125C15.1666 23.2745 15.1666 23.1178 15.1667 22.9866L15.1667 19.4999C15.1667 18.3032 14.1967 17.3332 13 17.3332C11.8034 17.3332 10.8334 18.3032 10.8334 19.4999L10.8334 22.9866C10.8334 23.1178 10.8335 23.2745 10.822 23.4125C10.8087 23.5725 10.7746 23.8015 10.6504 24.0406C10.4963 24.3374 10.2543 24.5794 9.95746 24.7336C9.71835 24.8578 9.48932 24.8919 9.32932 24.9052C9.19135 24.9166 9.03465 24.9166 8.90344 24.9165C8.89483 24.9165 8.88633 24.9165 8.87796 24.9165H8.43707C7.55032 24.9165 6.81847 24.9166 6.22263 24.8671C5.60367 24.8157 5.03509 24.7053 4.50248 24.4287C3.71103 24.0175 3.06571 23.3722 2.65458 22.5807C2.37792 22.0481 2.26757 21.4796 2.21616 20.8606C2.16668 20.2648 2.16669 19.5329 2.16671 18.6462L2.16671 13.1829C2.16671 13.1418 2.16669 13.1013 2.16667 13.0612C2.16627 12.3054 2.16598 11.7345 2.30954 11.1893C2.43091 10.7283 2.62747 10.2906 2.89133 9.8937C3.20347 9.42416 3.6304 9.04506 4.19554 8.54325C4.22548 8.51666 4.25581 8.48973 4.28653 8.46242L9.99226 3.39066C10.3814 3.04473 10.7193 2.74433 11.0194 2.51714C11.338 2.2759 11.6795 2.06499 12.0913 1.94506Z\" fill=\"#182C55\"/> </svg>'}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-shsDg.framer-4x3vzh, .framer-shsDg .framer-4x3vzh { display: block; }\",\".framer-shsDg.framer-14kr807 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; padding: 0px; position: relative; width: 40px; }\",\".framer-shsDg .framer-1l927cv-container { flex: none; height: 100%; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-shsDg.framer-14kr807 { gap: 0px; } .framer-shsDg.framer-14kr807 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-shsDg.framer-14kr807 > :first-child { margin-top: 0px; } .framer-shsDg.framer-14kr807 > :last-child { margin-bottom: 0px; } }\",\".framer-shsDg.framer-v-1uld05p.framer-14kr807, .framer-shsDg.framer-v-1pdwkzi.framer-14kr807, .framer-shsDg.framer-v-19pv45h.framer-14kr807 { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-shsDg.framer-v-1uld05p.framer-14kr807 { gap: 0px; } .framer-shsDg.framer-v-1uld05p.framer-14kr807 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-shsDg.framer-v-1uld05p.framer-14kr807 > :first-child { margin-top: 0px; } .framer-shsDg.framer-v-1uld05p.framer-14kr807 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-shsDg.framer-v-1pdwkzi.framer-14kr807 { gap: 0px; } .framer-shsDg.framer-v-1pdwkzi.framer-14kr807 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-shsDg.framer-v-1pdwkzi.framer-14kr807 > :first-child { margin-top: 0px; } .framer-shsDg.framer-v-1pdwkzi.framer-14kr807 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-shsDg.framer-v-19pv45h.framer-14kr807 { gap: 0px; } .framer-shsDg.framer-v-19pv45h.framer-14kr807 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-shsDg.framer-v-19pv45h.framer-14kr807 > :first-child { margin-top: 0px; } .framer-shsDg.framer-v-19pv45h.framer-14kr807 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gVPs89Jpd\":{\"layout\":[\"fixed\",\"fixed\"]},\"nEC88_Kxp\":{\"layout\":[\"fixed\",\"fixed\"]},\"a3_2Llw7V\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"B0H1XxL8y\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framereeqd4Cl6D=withCSS(Component,css,\"framer-shsDg\");export default Framereeqd4Cl6D;Framereeqd4Cl6D.displayName=\"\uD83D\uDFE0 Elements/Icon\";Framereeqd4Cl6D.defaultProps={height:40,width:40};addPropertyControls(Framereeqd4Cl6D,{variant:{options:[\"LL120CvHr\",\"gVPs89Jpd\",\"nEC88_Kxp\",\"a3_2Llw7V\"],optionTitles:[\"Chat\",\"Call\",\"Home\",\"Bell\"],title:\"Variant\",type:ControlType.Enum},B0H1XxL8y:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color}});addFonts(Framereeqd4Cl6D,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framereeqd4Cl6D\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gVPs89Jpd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nEC88_Kxp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a3_2Llw7V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"B0H1XxL8y\\\":\\\"color\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"40\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eeqd4Cl6D.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,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 ElementsIcon from\"https://framerusercontent.com/modules/puvIA10C3rpyq5Nj0ekM/jppVMnQ0f9706qwL0Zqu/eeqd4Cl6D.js\";const ElementsIconFonts=getFonts(ElementsIcon);const ElementsIconControls=getPropertyControls(ElementsIcon);const enabledGestures={AumVVB6ju:{hover:true},dVuQnBims:{hover:true},N4Ab3Cd2O:{hover:true},Oq6k0T95H:{hover:true}};const cycleOrder=[\"AumVVB6ju\",\"dVuQnBims\",\"Oq6k0T95H\",\"N4Ab3Cd2O\",\"v_osBuZzu\"];const serializationHash=\"framer-iXiNR\";const variantClassNames={AumVVB6ju:\"framer-v-qe39j1\",dVuQnBims:\"framer-v-ox6a8a\",N4Ab3Cd2O:\"framer-v-vtx0iu\",Oq6k0T95H:\"framer-v-1xdywjz\",v_osBuZzu:\"framer-v-1gsifis\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Bell:\"a3_2Llw7V\",Call:\"gVPs89Jpd\",Chat:\"LL120CvHr\",Home:\"nEC88_Kxp\"};const humanReadableVariantMap={\"Extra Small\":\"N4Ab3Cd2O\",Full:\"v_osBuZzu\",Large:\"AumVVB6ju\",Medium:\"dVuQnBims\",Small:\"Oq6k0T95H\"};const getProps=({backgroundColor,height,hoverBackground,id,leftIconColor,leftIconType,leftIconVisible,link,rightIconColor,rightIconType,rightIconVisible,text,textColor,width,...props})=>{return{...props,BWa9K6Dr5:leftIconColor??props.BWa9K6Dr5??\"rgb(0, 0, 0)\",eSLxGNyHU:hoverBackground??props.eSLxGNyHU??\"var(--token-0a05606d-61ab-4011-b428-9e955c1d739e, rgb(255, 209, 68))\",mcI3Uy9Pw:humanReadableEnumMap[leftIconType]??leftIconType??props.mcI3Uy9Pw??\"LL120CvHr\",nukWCJqiQ:textColor??props.nukWCJqiQ??\"rgb(0, 0, 0)\",POFu_MPSz:humanReadableEnumMap[rightIconType]??rightIconType??props.POFu_MPSz??\"LL120CvHr\",s2qs2g42v:backgroundColor??props.s2qs2g42v??\"rgb(255, 221, 54)\",TBW4yF74c:link??props.TBW4yF74c,tnTYCAxu_:text??props.tnTYCAxu_??\"\uC0C1\uB2F4 \uC2E0\uCCAD\uD558\uAE30\",variant:humanReadableVariantMap[props.variant]??props.variant??\"AumVVB6ju\",x4IVAhyzQ:rightIconColor??props.x4IVAhyzQ??\"rgb(0, 0, 0)\",YV5X7WhhU:rightIconVisible??props.YV5X7WhhU,zIJmuxCpH:leftIconVisible??props.zIJmuxCpH??true};};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,tnTYCAxu_,nukWCJqiQ,zIJmuxCpH,mcI3Uy9Pw,BWa9K6Dr5,POFu_MPSz,YV5X7WhhU,x4IVAhyzQ,s2qs2g42v,eSLxGNyHU,TBW4yF74c,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AumVVB6ju\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:TBW4yF74c,motionChild:true,nodeId:\"AumVVB6ju\",openInNewTab:true,scopeId:\"c_kAy9hnm\",...addPropertyOverrides({N4Ab3Cd2O:{openInNewTab:false},v_osBuZzu:{openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-qe39j1\",className,classNames)} framer-jnfdfu`,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"AumVVB6ju\",ref:refBinding,style:{backgroundColor:s2qs2g42v,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"AumVVB6ju-hover\":{backgroundColor:eSLxGNyHU},\"dVuQnBims-hover\":{backgroundColor:eSLxGNyHU},\"N4Ab3Cd2O-hover\":{backgroundColor:eSLxGNyHU},\"Oq6k0T95H-hover\":{backgroundColor:eSLxGNyHU},dVuQnBims:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},N4Ab3Cd2O:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},Oq6k0T95H:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},v_osBuZzu:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},...addPropertyOverrides({\"AumVVB6ju-hover\":{\"data-framer-name\":undefined},\"dVuQnBims-hover\":{\"data-framer-name\":undefined},\"N4Ab3Cd2O-hover\":{\"data-framer-name\":undefined},\"Oq6k0T95H-hover\":{\"data-framer-name\":undefined},dVuQnBims:{\"data-framer-name\":\"Medium\"},N4Ab3Cd2O:{\"data-framer-name\":\"Extra Small\"},Oq6k0T95H:{\"data-framer-name\":\"Small\"},v_osBuZzu:{\"data-framer-name\":\"Full\"}},baseVariant,gestureVariant),children:[zIJmuxCpH&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+(20+((componentViewport?.height||64)-40-20)/2),...addPropertyOverrides({dVuQnBims:{height:16,width:\"16px\",y:(componentViewport?.y||0)+(20+((componentViewport?.height||59)-40-16)/2)},N4Ab3Cd2O:{height:12,width:\"12px\",y:(componentViewport?.y||0)+(8+((componentViewport?.height||33)-16-12)/2)},Oq6k0T95H:{height:14,width:\"14px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||42)-24-14)/2)},v_osBuZzu:{height:12,width:\"12px\",y:(componentViewport?.y||0)+(8+((componentViewport?.height||33)-16-12)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7gpyi3-container\",layoutDependency:layoutDependency,layoutId:\"GhO9rbWzT-container\",nodeId:\"GhO9rbWzT\",rendersWithMotion:true,scopeId:\"c_kAy9hnm\",children:/*#__PURE__*/_jsx(ElementsIcon,{B0H1XxL8y:BWa9K6Dr5,height:\"100%\",id:\"GhO9rbWzT\",layoutId:\"GhO9rbWzT\",style:{height:\"100%\",width:\"100%\"},variant:mcI3Uy9Pw,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Pretendard SemiBold\", \"Pretendard SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-nukWCJqiQ-c_kAy9hnm))\"},children:\"\uC0C1\uB2F4 \uC2E0\uCCAD\uD558\uAE30\"})}),className:\"framer-t2y02v\",fonts:[\"CUSTOM;Pretendard SemiBold\"],layoutDependency:layoutDependency,layoutId:\"R9fjxLqOC\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-nukWCJqiQ-c_kAy9hnm)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-nukWCJqiQ-c_kAy9hnm\":nukWCJqiQ},text:tnTYCAxu_,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dVuQnBims:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Pretendard SemiBold\", \"Pretendard SemiBold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-nukWCJqiQ-c_kAy9hnm))\"},children:\"\uC0C1\uB2F4 \uC2E0\uCCAD\uD558\uAE30\"})})},N4Ab3Cd2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Pretendard SemiBold\", \"Pretendard SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-nukWCJqiQ-c_kAy9hnm))\"},children:\"\uC0C1\uB2F4 \uC2E0\uCCAD\uD558\uAE30\"})})},Oq6k0T95H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Pretendard SemiBold\", \"Pretendard SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-nukWCJqiQ-c_kAy9hnm))\"},children:\"\uC0C1\uB2F4 \uC2E0\uCCAD\uD558\uAE30\"})})},v_osBuZzu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Pretendard SemiBold\", \"Pretendard SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-nukWCJqiQ-c_kAy9hnm))\"},children:\"\uC0C1\uB2F4 \uC2E0\uCCAD\uD558\uAE30\"})})}},baseVariant,gestureVariant)}),YV5X7WhhU&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+(20+((componentViewport?.height||64)-40-20)/2),...addPropertyOverrides({dVuQnBims:{height:16,width:\"16px\",y:(componentViewport?.y||0)+(20+((componentViewport?.height||59)-40-16)/2)},N4Ab3Cd2O:{height:12,width:\"12px\",y:(componentViewport?.y||0)+(8+((componentViewport?.height||33)-16-12)/2)},Oq6k0T95H:{height:14,width:\"14px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||42)-24-14)/2)},v_osBuZzu:{height:12,width:\"12px\",y:(componentViewport?.y||0)+(8+((componentViewport?.height||33)-16-12)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gbfp1d-container\",layoutDependency:layoutDependency,layoutId:\"Xi7kRmvgG-container\",nodeId:\"Xi7kRmvgG\",rendersWithMotion:true,scopeId:\"c_kAy9hnm\",children:/*#__PURE__*/_jsx(ElementsIcon,{B0H1XxL8y:x4IVAhyzQ,height:\"100%\",id:\"Xi7kRmvgG\",layoutId:\"Xi7kRmvgG\",style:{height:\"100%\",width:\"100%\"},variant:POFu_MPSz,width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iXiNR.framer-jnfdfu, .framer-iXiNR .framer-jnfdfu { display: block; }\",\".framer-iXiNR.framer-qe39j1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 20px 40px 20px 40px; position: relative; text-decoration: none; width: min-content; }\",\".framer-iXiNR .framer-7gpyi3-container, .framer-iXiNR .framer-gbfp1d-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-iXiNR .framer-t2y02v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iXiNR.framer-qe39j1 { gap: 0px; } .framer-iXiNR.framer-qe39j1 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-iXiNR.framer-qe39j1 > :first-child { margin-left: 0px; } .framer-iXiNR.framer-qe39j1 > :last-child { margin-right: 0px; } }\",\".framer-iXiNR.framer-v-ox6a8a.framer-qe39j1 { padding: 20px 32px 20px 32px; }\",\".framer-iXiNR.framer-v-ox6a8a .framer-7gpyi3-container, .framer-iXiNR.framer-v-ox6a8a .framer-gbfp1d-container { height: 16px; width: 16px; }\",\".framer-iXiNR.framer-v-1xdywjz.framer-qe39j1 { padding: 12px 20px 12px 20px; }\",\".framer-iXiNR.framer-v-1xdywjz .framer-7gpyi3-container, .framer-iXiNR.framer-v-1xdywjz .framer-gbfp1d-container { height: 14px; width: 14px; }\",\".framer-iXiNR.framer-v-vtx0iu.framer-qe39j1 { padding: 8px 16px 8px 16px; }\",\".framer-iXiNR.framer-v-vtx0iu .framer-7gpyi3-container, .framer-iXiNR.framer-v-vtx0iu .framer-gbfp1d-container, .framer-iXiNR.framer-v-1gsifis .framer-7gpyi3-container, .framer-iXiNR.framer-v-1gsifis .framer-gbfp1d-container { height: 12px; width: 12px; }\",\".framer-iXiNR.framer-v-1gsifis.framer-qe39j1 { cursor: unset; padding: 8px 16px 8px 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 216\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"dVuQnBims\":{\"layout\":[\"auto\",\"auto\"]},\"Oq6k0T95H\":{\"layout\":[\"auto\",\"auto\"]},\"N4Ab3Cd2O\":{\"layout\":[\"auto\",\"auto\"]},\"v_osBuZzu\":{\"layout\":[\"auto\",\"auto\"]},\"Cu1JzHo2v\":{\"layout\":[\"auto\",\"auto\"]},\"A3Qnf74SI\":{\"layout\":[\"auto\",\"auto\"]},\"uOxgk5ht_\":{\"layout\":[\"auto\",\"auto\"]},\"HZsW9NmIa\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"tnTYCAxu_\":\"text\",\"nukWCJqiQ\":\"textColor\",\"zIJmuxCpH\":\"leftIconVisible\",\"mcI3Uy9Pw\":\"leftIconType\",\"BWa9K6Dr5\":\"leftIconColor\",\"POFu_MPSz\":\"rightIconType\",\"YV5X7WhhU\":\"rightIconVisible\",\"x4IVAhyzQ\":\"rightIconColor\",\"s2qs2g42v\":\"backgroundColor\",\"eSLxGNyHU\":\"hoverBackground\",\"TBW4yF74c\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerc_kAy9hnm=withCSS(Component,css,\"framer-iXiNR\");export default Framerc_kAy9hnm;Framerc_kAy9hnm.displayName=\"1.Size\";Framerc_kAy9hnm.defaultProps={height:64,width:216};addPropertyControls(Framerc_kAy9hnm,{variant:{options:[\"AumVVB6ju\",\"dVuQnBims\",\"Oq6k0T95H\",\"N4Ab3Cd2O\",\"v_osBuZzu\"],optionTitles:[\"Large\",\"Medium\",\"Small\",\"Extra Small\",\"Full\"],title:\"Variant\",type:ControlType.Enum},tnTYCAxu_:{defaultValue:\"\uC0C1\uB2F4 \uC2E0\uCCAD\uD558\uAE30\",displayTextArea:false,title:\"Text\",type:ControlType.String},nukWCJqiQ:{defaultValue:\"rgb(0, 0, 0)\",title:\"Text Color\",type:ControlType.Color},zIJmuxCpH:{defaultValue:true,title:\"Left Icon Visible\",type:ControlType.Boolean},mcI3Uy9Pw:ElementsIconControls?.[\"variant\"]&&{...ElementsIconControls[\"variant\"],defaultValue:\"LL120CvHr\",description:undefined,hidden:undefined,title:\"Left Icon Type\"},BWa9K6Dr5:{defaultValue:\"rgb(0, 0, 0)\",title:\"Left Icon Color\",type:ControlType.Color},POFu_MPSz:ElementsIconControls?.[\"variant\"]&&{...ElementsIconControls[\"variant\"],defaultValue:\"LL120CvHr\",description:undefined,hidden:undefined,title:\"Right Icon Type\"},YV5X7WhhU:{defaultValue:false,title:\"Right Icon Visible\",type:ControlType.Boolean},x4IVAhyzQ:{defaultValue:\"rgb(0, 0, 0)\",title:\"Right Icon Color\",type:ControlType.Color},s2qs2g42v:{defaultValue:\"rgb(255, 221, 54)\",title:\"Background Color\",type:ControlType.Color},eSLxGNyHU:{defaultValue:'var(--token-0a05606d-61ab-4011-b428-9e955c1d739e, rgb(255, 209, 68)) /* {\"name\":\"Primary/BG-Hover\"} */',title:\"Hover Background\",type:ControlType.Color},TBW4yF74c:{title:\"Link\",type:ControlType.Link}});addFonts(Framerc_kAy9hnm,[{explicitInter:true,fonts:[{family:\"Pretendard SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/rWe9hQhIAEiZ3I4JbVZtO7hBPjk.woff2\"}]},...ElementsIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerc_kAy9hnm\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dVuQnBims\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Oq6k0T95H\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"N4Ab3Cd2O\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"v_osBuZzu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Cu1JzHo2v\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"A3Qnf74SI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uOxgk5ht_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HZsW9NmIa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"tnTYCAxu_\\\":\\\"text\\\",\\\"nukWCJqiQ\\\":\\\"textColor\\\",\\\"zIJmuxCpH\\\":\\\"leftIconVisible\\\",\\\"mcI3Uy9Pw\\\":\\\"leftIconType\\\",\\\"BWa9K6Dr5\\\":\\\"leftIconColor\\\",\\\"POFu_MPSz\\\":\\\"rightIconType\\\",\\\"YV5X7WhhU\\\":\\\"rightIconVisible\\\",\\\"x4IVAhyzQ\\\":\\\"rightIconColor\\\",\\\"s2qs2g42v\\\":\\\"backgroundColor\\\",\\\"eSLxGNyHU\\\":\\\"hoverBackground\\\",\\\"TBW4yF74c\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"64\",\"framerIntrinsicWidth\":\"216\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./c_kAy9hnm.map"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "SVGFonts", "getFonts", "SVG_Prod_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "B0H1XxL8y", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "Framereeqd4Cl6D", "withCSS", "eeqd4Cl6D_default", "addPropertyControls", "ControlType", "addFonts", "ElementsIconFonts", "getFonts", "eeqd4Cl6D_default", "ElementsIconControls", "getPropertyControls", "enabledGestures", "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", "backgroundColor", "height", "hoverBackground", "id", "leftIconColor", "leftIconType", "leftIconVisible", "link", "rightIconColor", "rightIconType", "rightIconVisible", "text", "textColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "tnTYCAxu_", "nukWCJqiQ", "zIJmuxCpH", "mcI3Uy9Pw", "BWa9K6Dr5", "POFu_MPSz", "YV5X7WhhU", "x4IVAhyzQ", "s2qs2g42v", "eSLxGNyHU", "TBW4yF74c", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "Framerc_kAy9hnm", "withCSS", "c_kAy9hnm_default", "addPropertyControls", "ControlType", "addFonts"]
}
