{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/j4xjCqh8HZjuPD2Qbz7T/6Zu9Ex8nsC33i7qi8BYC/SVG_Transition.js", "ssg:https://framerusercontent.com/modules/gLKD9p5OsWxzaRf81Zmv/E1PjEvO2lCGu5mRLvxVC/nN6aS31z3.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";SVGIconWithTransition.displayName=\"SVG Icon Transition\";/**\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 16\n */export default function SVGIconWithTransition(props){const{svgContent,enableHover,normalColor,hoverColor,transition,normalWeight,hoverWeight,enablePressed,pressedEffect,respectExternalPointerEvents,attribution,style}=props;// State to handle hover\nconst[isHovered,setIsHovered]=React.useState(false);// Reference to the main container\nconst containerRef=React.useRef(null);// Get current render target\nconst isCanvas=RenderTarget.current()===RenderTarget.canvas;React.useEffect(()=>{if(!enableHover){setIsHovered(false);}},[enableHover]);// Create SVG element from provided content\nconst createSVGElement=()=>{// Safety: make sure content is actually SVG\nif(!svgContent||!svgContent.trim().startsWith(\"<svg\")){return /*#__PURE__*/_jsx(\"div\",{children:\"Invalid SVG content\"});}// Process SVG - replace fill and stroke attributes with currentColor, but preserve special values\nlet processedSVG=svgContent.replace(/fill=\"([^\"]*)\"/g,(match,value)=>{// Preserve \"none\" value to ensure transparent areas stay transparent\nif(value.toLowerCase()===\"none\")return'fill=\"none\"';return'fill=\"currentColor\"';}).replace(/stroke=\"([^\"]*)\"/g,(match,value)=>{if(value.toLowerCase()===\"none\")return'stroke=\"none\"';return'stroke=\"currentColor\"';}).replace(/stroke-width=\"[^\"]*\"/g,`stroke-width=\"${normalWeight}\"`)// Make sure we preserve all rule attributes\n.replace(/fill-rule=\"[^\"]*\"/g,match=>match).replace(/clip-rule=\"[^\"]*\"/g,match=>match);return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:processedSVG},style:{width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\"}});};// Event handlers with proper pointer events check\nconst handleMouseEnter=()=>{if(enableHover&&(!respectExternalPointerEvents||isCanvas)){setIsHovered(true);}};const handleMouseLeave=()=>{if(enableHover){setIsHovered(false);}};// Get current color based on hover state\nconst currentColor=enableHover&&isHovered?hoverColor:normalColor;const currentStrokeWidth=enableHover&&isHovered?hoverWeight:normalWeight;// Get stroke transition based on the current transition settings\nconst getStrokeTransition=()=>{if(transition.type===\"spring\"){return`stroke-width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) ${transition.delay||0}s`;}else{return`stroke-width 0.3s ease ${transition.delay||0}s`;}};// Get pressed animation properties\nconst pressedAnimation=enablePressed?{scale:pressedEffect.scale,opacity:pressedEffect.opacity,rotate:pressedEffect.rotate,x:pressedEffect.offsetX,y:pressedEffect.offsetY,skewX:pressedEffect.skewX,skewY:pressedEffect.skewY,transition:{duration:.1}}:undefined;// Handle the pointer events style correctly\n// 1. In canvas: use auto to allow testing\n// 2. In preview/live with respectExternal: use none to prevent interaction\n// 3. Otherwise: use auto for normal interaction\nconst pointerEventsStyle=isCanvas?\"auto\":respectExternalPointerEvents?\"none\":\"auto\";// console.log(\"SVG Icon: Current color state:\", { // Removed console.log as per original code structure\n//     isHovered,\n//     color: currentColor,\n//     normalColor,\n//     hoverColor,\n// })\nreturn /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...style,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",color:currentColor,cursor:\"pointer\",pointerEvents:pointerEventsStyle},initial:false,animate:{color:currentColor},\"data-color\":currentColor,transition:transition,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,whileTap:pressedAnimation,children:[createSVGElement(),/*#__PURE__*/_jsx(\"style\",{children:`\n                [data-framer-component-type=\"${SVGIconWithTransition.displayName}\"] svg path,\n                [data-framer-component-type=\"${SVGIconWithTransition.displayName}\"] svg circle,\n                [data-framer-component-type=\"${SVGIconWithTransition.displayName}\"] svg rect,\n                [data-framer-component-type=\"${SVGIconWithTransition.displayName}\"] svg line,\n                [data-framer-component-type=\"${SVGIconWithTransition.displayName}\"] svg polyline,\n                [data-framer-component-type=\"${SVGIconWithTransition.displayName}\"] svg polygon,\n                [data-framer-component-type=\"${SVGIconWithTransition.displayName}\"] svg ellipse {\n                    transition: ${getStrokeTransition()};\n                    stroke-width: ${currentStrokeWidth}px !important;\n                    /* Conditional fill/stroke based on original SVG */\n                    ${svgContent.includes('fill=\"none\"')?\"\":\"fill: currentColor !important;\"}\n                    ${svgContent.includes('stroke=\"none\"')?\"\":\"stroke: currentColor !important;\"}\n                }\n                /* Explicitly handle elements that should remain 'none' */\n                [data-framer-component-type=\"${SVGIconWithTransition.displayName}\"] svg [fill=\"none\"] {\n                    fill: none !important;\n                }\n                [data-framer-component-type=\"${SVGIconWithTransition.displayName}\"] svg [stroke=\"none\"] {\n                    stroke: none !important;\n                }\n                `})]});}// Default props\nSVGIconWithTransition.defaultProps={// *** SVG CONTENT REPLACED HERE ***\nsvgContent:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.28418 6.42993V11.9269H3.28018V9.73593H5.56418V8.91293H3.27918V7.26393H5.81018V6.43093H2.28418V6.42993ZM22.2392 11.9269V7.80293H23.1802V8.49593H23.2242C23.2982 8.25593 23.4272 8.07093 23.6122 7.94293C23.8972 7.74093 24.2532 7.71693 24.5892 7.77293V8.66593C24.3082 8.56593 23.9192 8.58793 23.6592 8.72893C23.5188 8.80342 23.4022 8.91585 23.3226 9.05341C23.2431 9.19097 23.2038 9.34811 23.2092 9.50693V11.9269H22.2392ZM19.6802 16.5229V13.0669H20.4692V13.6479H20.5062C20.5577 13.4609 20.6721 13.2974 20.8302 13.1849C21.0702 13.0149 21.3682 12.9949 21.6502 13.0419V13.7899C21.3931 13.7059 21.1135 13.7249 20.8702 13.8429C20.7525 13.9053 20.6548 13.9995 20.5881 14.1148C20.5214 14.2301 20.4885 14.3618 20.4932 14.4949V16.5229H19.6802ZM24.4292 13.9849L23.6892 14.0619C23.6272 13.8349 23.4262 13.6299 23.0532 13.6299C22.7172 13.6299 22.4562 13.7929 22.4562 14.0249C22.4562 14.2269 22.5952 14.3519 22.9452 14.4299C23.3852 14.5219 23.9232 14.5619 24.2612 14.8869C24.5792 15.1929 24.5712 15.7219 24.3142 16.0619C24.0642 16.3939 23.6072 16.5899 23.0282 16.5899C22.1842 16.5899 21.6512 16.2149 21.5482 15.5799L22.3422 15.5059C22.4122 15.8159 22.6582 15.9759 23.0282 15.9759C23.4182 15.9759 23.6712 15.7939 23.6712 15.5639C23.6712 15.3709 23.5172 15.2389 23.2072 15.1689C22.7642 15.0759 22.2172 15.0349 21.8822 14.6959C21.5822 14.3889 21.5652 13.8579 21.8202 13.5179C22.0552 13.2049 22.4882 13.0239 23.0402 13.0239C23.4472 13.0239 23.7652 13.1109 23.9962 13.2869C24.2282 13.4599 24.3732 13.6919 24.4282 13.9849H24.4292Z\" fill=\"black\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.9592 16.5899C18.7732 16.5899 19.3092 16.1899 19.4552 15.5979L18.6952 15.5079C18.6625 15.6016 18.6086 15.6865 18.5377 15.7559C18.4667 15.8253 18.3806 15.8773 18.2862 15.9079C18.1583 15.9516 18.0226 15.968 17.8879 15.9561C17.7533 15.9442 17.6226 15.9043 17.5042 15.8389C17.2542 15.6899 17.1022 15.4069 17.0882 15.0199H19.4922C19.4922 14.4549 19.4492 13.8559 19.0162 13.4409C18.7252 13.1579 18.3332 13.0239 17.9062 13.0239C17.2462 13.0239 16.7492 13.3399 16.4812 13.8799C16.2032 14.4379 16.2012 15.1989 16.4812 15.7559C16.7532 16.2859 17.2652 16.5899 17.9592 16.5899ZM18.6992 14.4729H17.0912C17.1292 14.0109 17.4252 13.6569 17.9122 13.6569C18.3862 13.6569 18.6512 13.9769 18.6992 14.4729Z\" fill=\"black\"/><path d=\"M12.4323 16.523L11.4553 13.067H12.2843L12.8933 15.497H12.9233L13.5453 13.067H14.3643L14.9853 15.487H15.0153L15.6153 13.067H16.4473L15.4703 16.523H14.6203L13.9713 14.189H13.9283L13.2783 16.523H12.4323ZM9.14927 16.523V14.5C9.14927 13.984 9.46227 13.712 9.88227 13.712C10.3003 13.712 10.5563 13.987 10.5563 14.451V16.521H11.3693V14.324C11.3693 13.771 11.1633 13.376 10.8093 13.174C10.4433 12.965 9.89627 12.954 9.54227 13.196C9.37585 13.3086 9.24752 13.469 9.17427 13.656H9.13427V13.066H8.33727V16.522H9.14927V16.523ZM8.07727 13.985L7.33827 14.062C7.27627 13.835 7.07527 13.63 6.70227 13.63C6.36627 13.63 6.10527 13.793 6.10527 14.025C6.10527 14.227 6.24327 14.352 6.59327 14.43C7.03327 14.522 7.57127 14.562 7.91027 14.887C8.22827 15.193 8.21927 15.722 7.96327 16.062C7.71327 16.394 7.25627 16.59 6.67727 16.59C5.83327 16.59 5.29927 16.215 5.19727 15.58L5.99127 15.506C6.06127 15.816 6.30727 15.976 6.67727 15.976C7.06627 15.976 7.32027 15.794 7.32027 15.564C7.32027 15.371 7.16527 15.239 6.85627 15.169C6.41227 15.076 5.86527 15.035 5.53027 14.696C5.23027 14.389 5.21327 13.858 5.46827 13.518C5.70327 13.205 6.13727 13.024 6.68927 13.024C7.09527 13.024 7.41327 13.111 7.64427 13.287C7.87727 13.46 8.02127 13.692 8.07727 13.985Z\" fill=\"black\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.58697 16.477C2.90597 16.619 3.32197 16.645 3.65097 16.517C3.92097 16.413 4.09697 16.234 4.19497 16.047H4.21897V16.523H5.00097V14.21C5.00097 13.295 4.25597 13.023 3.59797 13.023C2.88297 13.023 2.31797 13.339 2.13597 13.975L2.89297 14.083C2.97597 13.847 3.20697 13.648 3.60397 13.648C3.98397 13.648 4.18497 13.842 4.18497 14.176C4.18497 14.251 4.16497 14.322 4.09897 14.365C3.98797 14.439 3.73997 14.458 3.33197 14.504C2.99897 14.537 2.67497 14.611 2.42397 14.764C2.17597 14.916 2.02197 15.164 2.02197 15.551C2.02197 16.005 2.23697 16.316 2.58697 16.477ZM3.81397 15.899C3.47597 16.079 2.80697 16.036 2.80697 15.54C2.80697 15.33 2.92697 15.203 3.11597 15.129C3.28197 15.062 3.45597 15.046 3.63197 15.021C3.85497 14.99 4.11197 14.941 4.19197 14.879V15.284C4.19122 15.4113 4.15558 15.5359 4.08894 15.6443C4.02229 15.7527 3.92719 15.8408 3.81397 15.899ZM19.114 11.75C19.671 12.07 20.438 12.096 21.033 11.864C21.533 11.666 21.853 11.298 21.97 10.824L21.062 10.717C21.0229 10.8284 20.9586 10.9293 20.8741 11.0119C20.7896 11.0945 20.6873 11.1564 20.575 11.193C20.278 11.297 19.915 11.271 19.642 11.112C19.342 10.934 19.162 10.596 19.145 10.134H22.014C22.014 9.45798 21.966 8.74798 21.446 8.24898C21.098 7.91198 20.63 7.75098 20.121 7.75098C19.728 7.75098 19.386 7.84098 19.096 8.02098C18.517 8.37898 18.181 9.03698 18.181 9.89098C18.181 10.753 18.515 11.401 19.114 11.751V11.75ZM21.068 9.48098H19.148C19.194 8.92998 19.548 8.50798 20.128 8.50798C20.695 8.50798 21.013 8.88898 21.068 9.48098Z\" fill=\"black\"/><path d=\"M12.145 11.927V7.80298H13.071V8.50798H13.123C13.296 8.03398 13.715 7.75098 14.259 7.75098C14.82 7.75098 15.217 8.04098 15.369 8.50798H15.414C15.601 8.04998 16.054 7.75098 16.654 7.75098C17.471 7.75098 17.941 8.38198 17.941 9.16098V11.927H16.967V9.30798C16.967 8.88598 16.697 8.56998 16.262 8.56998C15.797 8.56998 15.521 8.89298 15.521 9.35198V11.927H14.561V9.27098C14.561 8.84098 14.287 8.57098 13.876 8.57098C13.456 8.57098 13.116 8.91398 13.116 9.41898V11.927H12.146H12.145Z\" fill=\"black\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1162 11.92C10.4402 11.795 10.6492 11.583 10.7662 11.36H10.7952V11.927H11.7282V9.16698C11.7282 8.89498 11.6792 8.66698 11.5812 8.48498C11.2852 7.93898 10.6432 7.75098 10.0542 7.75098C9.20018 7.75098 8.52418 8.12798 8.30918 8.88798L9.21218 9.01698C9.31218 8.73498 9.58718 8.49698 10.0612 8.49698C10.5132 8.49698 10.7542 8.72898 10.7542 9.12698C10.7542 9.36898 10.5272 9.42198 10.3272 9.44798C9.93618 9.49898 9.53918 9.52098 9.15718 9.62198C8.78618 9.71498 8.47418 9.88698 8.30118 10.193C8.09618 10.558 8.12718 11.105 8.35318 11.451C8.70818 11.994 9.53118 12.149 10.1162 11.92ZM10.3122 11.182C10.0202 11.338 9.58318 11.354 9.30518 11.16C8.93518 10.902 9.12018 10.403 9.47818 10.264C9.86118 10.109 10.4312 10.219 10.7622 9.96398V10.448C10.7614 10.5998 10.719 10.7484 10.6397 10.8778C10.5603 11.0072 10.4471 11.1124 10.3122 11.182Z\" fill=\"black\"/><path d=\"M6.0293 11.927V7.80298H6.9693V8.49599H7.0143C7.0883 8.25599 7.2173 8.07098 7.4013 7.94298C7.6873 7.74098 8.0433 7.71698 8.3793 7.77298V8.66599C8.0993 8.56699 7.7093 8.58799 7.4493 8.72899C7.30893 8.80348 7.19231 8.91591 7.11275 9.05347C7.03319 9.19102 6.99387 9.34817 6.9993 9.50698V11.927H6.0293Z\" fill=\"black\"/></svg>',enableHover:true,normalColor:\"#000000\",hoverColor:\"#0099FF\",transition:{type:\"spring\",stiffness:400,damping:30,mass:1},normalWeight:0,hoverWeight:0,enablePressed:true,pressedEffect:{scale:.9,opacity:1,rotate:0,offsetX:0,offsetY:0,skewX:0,skewY:0},respectExternalPointerEvents:false,attribution:\"By Andr\\xe9s Marciales\"};// Property controls - en el orden espec\u00EDfico solicitado\naddPropertyControls(SVGIconWithTransition,{// 1\nsvgContent:{type:ControlType.String,title:\"SVG Content\",description:\"Full SVG code starting with <svg>\",displayTextArea:true},// 2\nenableHover:{type:ControlType.Boolean,title:\"Enable Hover\",defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"},// 3\nnormalColor:{type:ControlType.Color,title:\"Normal Color\"},// 4\nhoverColor:{type:ControlType.Color,title:\"Hover Color\",hidden:props=>!props.enableHover},// 5\ntransition:{type:ControlType.Transition,title:\"Transition\"},// 6\nnormalWeight:{type:ControlType.Number,title:\"Normal Weight\",min:0,max:10,step:.5,displayStepper:true},// 7\nhoverWeight:{type:ControlType.Number,title:\"Hover Weight\",min:0,max:10,step:.5,displayStepper:true,hidden:props=>!props.enableHover},// 8\nenablePressed:{type:ControlType.Boolean,title:\"Enable Press Effect\",defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"},// 9\npressedEffect:{type:ControlType.Object,title:\"Press Effect\",controls:{scale:{type:ControlType.Number,title:\"Scale\",defaultValue:.9,min:.5,max:1.5,step:.01,displayStepper:true},opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:1,min:0,max:1,step:.01},rotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:0,min:-180,max:180,step:1,unit:\"\\xb0\"},offsetX:{type:ControlType.Number,title:\"Offset X\",defaultValue:0,min:-100,max:100,step:1},offsetY:{type:ControlType.Number,title:\"Offset Y\",defaultValue:0,min:-100,max:100,step:1},skewX:{type:ControlType.Number,title:\"Skew X\",defaultValue:0,min:-45,max:45,step:1,unit:\"\\xb0\"},skewY:{type:ControlType.Number,title:\"Skew Y\",defaultValue:0,min:-45,max:45,step:1,unit:\"\\xb0\"}},hidden:props=>!props.enablePressed},// 10\nrespectExternalPointerEvents:{type:ControlType.Boolean,title:\"Respect External Pointer Events\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"When enabled, the component will respect pointer-events: none from parent elements \\n\\nBy [Andr\\xe9s Marciales](https://www.x.com/aamarciales)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVGIconWithTransition\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"16\",\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth any\",\"framerIntrinsicHeight\":\"16\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Transition.map", "// Generated by Framer (013b13c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-KBJoz .framer-styles-preset-1r7golp:not(.rich-text-wrapper), .framer-KBJoz .framer-styles-preset-1r7golp.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-849e5971-4e20-414b-85bc-9934f715adf8, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-KBJoz\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SVGIconWithTransition", "props", "svgContent", "enableHover", "normalColor", "hoverColor", "transition", "normalWeight", "hoverWeight", "enablePressed", "pressedEffect", "respectExternalPointerEvents", "attribution", "style", "isHovered", "setIsHovered", "ye", "containerRef", "pe", "isCanvas", "RenderTarget", "ue", "createSVGElement", "p", "processedSVG", "match", "value", "handleMouseEnter", "handleMouseLeave", "currentColor", "currentStrokeWidth", "getStrokeTransition", "pressedAnimation", "pointerEventsStyle", "u", "motion", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className"]
}
