{"version":3,"file":"GIDzaOLBt.6x9Nt6bP.mjs","names":["SVG"],"sources":["https:/framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js","https:/framerusercontent.com/modules/JskFfdgWwEK6tOEf2X38/kc5R9ZvCniQsoEiGBlH1/GIDzaOLBt.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 (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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 SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const enabledGestures={fmJIq4npZ:{hover:true},NCCMobYUK:{hover:true}};const cycleOrder=[\"NCCMobYUK\",\"fmJIq4npZ\"];const serializationHash=\"framer-iOfvN\";const variantClassNames={fmJIq4npZ:\"framer-v-kl4rg3\",NCCMobYUK:\"framer-v-1ac9fpj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:800,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={\"Variabel knapp liten\":\"fmJIq4npZ\",\"Variabel knapp\":\"NCCMobYUK\"};const getProps=({defaultCircle,defaultFill,defaultIcon,defaultText,height,hoverCircle,hoverFill,hoverIcon,hoverText,icon01,icon02,id,lesMer,link,width,...props})=>{return{...props,AL6IB9otP:hoverFill??props.AL6IB9otP??\"var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138))\",fTULNZYxz:defaultIcon??props.fTULNZYxz??\"var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138))\",g0e9eEWSg:defaultText??props.g0e9eEWSg??\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",k3JhaMy5_:icon01??props.k3JhaMy5_??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',Lf8afaZg_:hoverCircle??props.Lf8afaZg_??\"var(--token-978fb1c8-8b78-44ca-9f80-b4814f1294a5, rgb(219, 176, 255))\",Lzyfez8Rw:defaultCircle??props.Lzyfez8Rw??\"var(--token-978fb1c8-8b78-44ca-9f80-b4814f1294a5, rgb(219, 176, 255))\",mKVpWCoSL:hoverText??props.mKVpWCoSL??\"var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138))\",Oon8L041D:defaultFill??props.Oon8L041D??\"var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138))\",rZYR6tqXt:hoverIcon??props.rZYR6tqXt??\"var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"NCCMobYUK\",VArIlTNTt:lesMer??props.VArIlTNTt??\"Les mer\",wbc_aIg1P:icon02??props.wbc_aIg1P??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',xIH4umtpR:link??props.xIH4umtpR};};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,VArIlTNTt,Oon8L041D,AL6IB9otP,Lzyfez8Rw,Lf8afaZg_,g0e9eEWSg,mKVpWCoSL,fTULNZYxz,rZYR6tqXt,k3JhaMy5_,wbc_aIg1P,xIH4umtpR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NCCMobYUK\",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:xIH4umtpR,motionChild:true,nodeId:\"NCCMobYUK\",openInNewTab:false,scopeId:\"GIDzaOLBt\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1ac9fpj\",className,classNames)} framer-1890c21`,\"data-framer-name\":\"Variabel knapp\",layoutDependency:layoutDependency,layoutId:\"NCCMobYUK\",ref:refBinding,style:{backgroundColor:Oon8L041D,borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"NCCMobYUK-hover\":{backgroundColor:AL6IB9otP}},...addPropertyOverrides({\"fmJIq4npZ-hover\":{\"data-framer-name\":undefined},\"NCCMobYUK-hover\":{\"data-framer-name\":undefined},fmJIq4npZ:{\"data-framer-name\":\"Variabel knapp liten\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3gq85b\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"cvpwI1IEd\",style:{backgroundColor:Lzyfez8Rw,borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{\"NCCMobYUK-hover\":{backgroundColor:Lf8afaZg_}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15a4d0w\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"BUG3uZG2D\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gp0h6a-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Uz2Fh7jWa-container\",nodeId:\"Uz2Fh7jWa\",rendersWithMotion:true,scopeId:\"GIDzaOLBt\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"NCCMobYUK-hover\":{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{customColor:fTULNZYxz,customPadding:0,customStrokeWidth:2,customSvgCode:k3JhaMy5_,description:\"\",height:\"100%\",id:\"Uz2Fh7jWa\",layoutId:\"Uz2Fh7jWa\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"NCCMobYUK-hover\":{customColor:rZYR6tqXt}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k49bdu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CtY_iK57q-container\",nodeId:\"CtY_iK57q\",rendersWithMotion:true,scopeId:\"GIDzaOLBt\",children:/*#__PURE__*/_jsx(SVG,{customColor:fTULNZYxz,customPadding:0,customStrokeWidth:2,customSvgCode:wbc_aIg1P,description:\"\",height:\"100%\",id:\"CtY_iK57q\",layoutId:\"CtY_iK57q\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"NCCMobYUK-hover\":{customColor:rZYR6tqXt}},baseVariant,gestureVariant)})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-g0e9eEWSg-GIDzaOLBt))\"},children:\"Learn more\"})}),className:\"framer-xpst1v\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"t6JZVAdeA\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-g0e9eEWSg-GIDzaOLBt)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-g0e9eEWSg-GIDzaOLBt\":g0e9eEWSg,\"--variable-reference-mKVpWCoSL-GIDzaOLBt\":mKVpWCoSL},text:VArIlTNTt,variants:{\"fmJIq4npZ-hover\":{\"--extracted-r6o4lv\":\"var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138))\"},\"NCCMobYUK-hover\":{\"--extracted-r6o4lv\":\"var(--variable-reference-mKVpWCoSL-GIDzaOLBt)\",\"--variable-reference-mKVpWCoSL-GIDzaOLBt\":mKVpWCoSL}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"fmJIq4npZ-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138)))\"},children:\"Les mer\"})})},\"NCCMobYUK-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-mKVpWCoSL-GIDzaOLBt))\"},children:\"Learn more\"})})},fmJIq4npZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-g0e9eEWSg-GIDzaOLBt))\"},children:\"Les mer\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iOfvN.framer-1890c21, .framer-iOfvN .framer-1890c21 { display: block; }\",\".framer-iOfvN.framer-1ac9fpj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 44px; justify-content: center; overflow: hidden; padding: 0px 58px 0px 24px; position: relative; text-decoration: none; width: 141px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iOfvN .framer-3gq85b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-end; overflow: hidden; padding: 0px 12px 0px 0px; position: absolute; right: 2px; top: calc(50.00000000000002% - 40px / 2); width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iOfvN .framer-15a4d0w { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-iOfvN .framer-gp0h6a-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 50%; position: absolute; top: 50%; width: 16px; }\",\".framer-iOfvN .framer-k49bdu-container { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: -16px; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 16px); }\",\".framer-iOfvN .framer-xpst1v { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-iOfvN.framer-v-kl4rg3.framer-1ac9fpj { aspect-ratio: 3.1931818181818183 / 1; height: var(--framer-aspect-ratio-supported, 37px); width: 118px; }\",\".framer-iOfvN.framer-v-kl4rg3 .framer-3gq85b { height: 96%; top: calc(50.00000000000002% - 96% / 2); width: 30%; }\",\".framer-iOfvN.framer-v-kl4rg3 .framer-xpst1v { height: 43%; }\",\".framer-iOfvN.framer-v-1ac9fpj.hover .framer-3gq85b { left: 2px; width: unset; }\",\".framer-iOfvN.framer-v-1ac9fpj.hover .framer-gp0h6a-container { bottom: 0px; height: unset; left: unset; right: -16px; top: 0px; width: var(--framer-aspect-ratio-supported, 16px); }\",\".framer-iOfvN.framer-v-1ac9fpj.hover .framer-k49bdu-container { left: 0px; }\",\".framer-iOfvN.framer-v-kl4rg3.hover .framer-3gq85b { width: 98%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 141\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"fmJIq4npZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"yGrycf1VA\":{\"layout\":[\"fixed\",\"fixed\"]},\"i824ZjK2K\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"VArIlTNTt\":\"lesMer\",\"Oon8L041D\":\"defaultFill\",\"AL6IB9otP\":\"hoverFill\",\"Lzyfez8Rw\":\"defaultCircle\",\"Lf8afaZg_\":\"hoverCircle\",\"g0e9eEWSg\":\"defaultText\",\"mKVpWCoSL\":\"hoverText\",\"fTULNZYxz\":\"defaultIcon\",\"rZYR6tqXt\":\"hoverIcon\",\"k3JhaMy5_\":\"icon01\",\"wbc_aIg1P\":\"icon02\",\"xIH4umtpR\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerGIDzaOLBt=withCSS(Component,css,\"framer-iOfvN\");export default FramerGIDzaOLBt;FramerGIDzaOLBt.displayName=\"Les mer\";FramerGIDzaOLBt.defaultProps={height:44,width:141};addPropertyControls(FramerGIDzaOLBt,{variant:{options:[\"NCCMobYUK\",\"fmJIq4npZ\"],optionTitles:[\"Variabel knapp\",\"Variabel knapp liten\"],title:\"Variant\",type:ControlType.Enum},VArIlTNTt:{defaultValue:\"Les mer\",displayTextArea:false,title:\"Les mer\",type:ControlType.String},Oon8L041D:{defaultValue:'var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138)) /* {\"name\":\"Reportasje dark\"} */',title:\"Default Fill\",type:ControlType.Color},AL6IB9otP:{defaultValue:'var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138)) /* {\"name\":\"Reportasje dark\"} */',title:\"Hover Fill\",type:ControlType.Color},Lzyfez8Rw:{defaultValue:'var(--token-978fb1c8-8b78-44ca-9f80-b4814f1294a5, rgb(219, 176, 255)) /* {\"name\":\"Reportasje lys\"} */',title:\"Default Circle\",type:ControlType.Color},Lf8afaZg_:{defaultValue:'var(--token-978fb1c8-8b78-44ca-9f80-b4814f1294a5, rgb(219, 176, 255)) /* {\"name\":\"Reportasje lys\"} */',title:\"Hover Circle\",type:ControlType.Color},g0e9eEWSg:{defaultValue:'var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {\"name\":\"12\"} */',title:\"Default Text\",type:ControlType.Color},mKVpWCoSL:{defaultValue:'var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138)) /* {\"name\":\"Reportasje dark\"} */',title:\"Hover Text\",type:ControlType.Color},fTULNZYxz:{defaultValue:'var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138)) /* {\"name\":\"Reportasje dark\"} */',title:\"Default Icon\",type:ControlType.Color},rZYR6tqXt:{defaultValue:'var(--token-c3b65f54-84b5-4a4f-8ead-47c58aff07b2, rgb(78, 6, 138)) /* {\"name\":\"Reportasje dark\"} */',title:\"Hover Icon\",type:ControlType.Color},k3JhaMy5_:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',displayTextArea:false,title:\"Icon 01\",type:ControlType.String},wbc_aIg1P:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',displayTextArea:false,title:\"Icon 02\",type:ControlType.String},xIH4umtpR:{title:\"Link\",type:ControlType.Link}});addFonts(FramerGIDzaOLBt,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGIDzaOLBt\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"VArIlTNTt\\\":\\\"lesMer\\\",\\\"Oon8L041D\\\":\\\"defaultFill\\\",\\\"AL6IB9otP\\\":\\\"hoverFill\\\",\\\"Lzyfez8Rw\\\":\\\"defaultCircle\\\",\\\"Lf8afaZg_\\\":\\\"hoverCircle\\\",\\\"g0e9eEWSg\\\":\\\"defaultText\\\",\\\"mKVpWCoSL\\\":\\\"hoverText\\\",\\\"fTULNZYxz\\\":\\\"defaultIcon\\\",\\\"rZYR6tqXt\\\":\\\"hoverIcon\\\",\\\"k3JhaMy5_\\\":\\\"icon01\\\",\\\"wbc_aIg1P\\\":\\\"icon02\\\",\\\"xIH4umtpR\\\":\\\"link\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fmJIq4npZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yGrycf1VA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i824ZjK2K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"141\",\"framerIntrinsicHeight\":\"44\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GIDzaOLBt.map"],"mappings":"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"}