{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/wlNsr7OA9G6QkgEsWUMo/ajvLTQTyaMdJ3m6a5IBj/zG3_9NrYP.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 (013b13c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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 cycleOrder=[\"dJKJOnsTf\",\"vkozjDfQG\",\"gxj_UeVcx\",\"QiZDqTRrX\",\"iDH_2zM5J\",\"ZuxXu3Pzk\",\"jAFOZ1n3z\",\"kUfXkSZNS\",\"HnWeyFJ7P\",\"z2Yc2TmqX\",\"d2ERIJDjL\",\"axqNs3WO9\",\"wvHjNCmOl\",\"r_U9Twa5f\",\"XEkaEs4Hu\",\"f86ZFHWyZ\",\"VmpkguzxI\",\"jYgu7ktp5\",\"yU_zHEeqc\",\"vCkKbQNsN\",\"JNSPT7SNV\",\"hFrn8g0QC\"];const serializationHash=\"framer-TKqmc\";const variantClassNames={axqNs3WO9:\"framer-v-y482dq\",d2ERIJDjL:\"framer-v-xnqltu\",dJKJOnsTf:\"framer-v-8x5gob\",f86ZFHWyZ:\"framer-v-1mi5urg\",gxj_UeVcx:\"framer-v-1o4nafy\",hFrn8g0QC:\"framer-v-b9wrgi\",HnWeyFJ7P:\"framer-v-1nphlhd\",iDH_2zM5J:\"framer-v-1gey5er\",jAFOZ1n3z:\"framer-v-mgv0sq\",JNSPT7SNV:\"framer-v-93tvxk\",jYgu7ktp5:\"framer-v-15sns5n\",kUfXkSZNS:\"framer-v-2ctmoq\",QiZDqTRrX:\"framer-v-jejmn5\",r_U9Twa5f:\"framer-v-uxv7mu\",vCkKbQNsN:\"framer-v-17j14kg\",vkozjDfQG:\"framer-v-1wb0skq\",VmpkguzxI:\"framer-v-133fhbn\",wvHjNCmOl:\"framer-v-w46aez\",XEkaEs4Hu:\"framer-v-pv0d39\",yU_zHEeqc:\"framer-v-1chgc2r\",z2Yc2TmqX:\"framer-v-1l127ad\",ZuxXu3Pzk:\"framer-v-1azghik\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};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={\"arrow right\":\"jYgu7ktp5\",\"Chevron Ned\":\"r_U9Twa5f\",\"e-post\":\"z2Yc2TmqX\",\"Ekstern lenke (legacy)\":\"dJKJOnsTf\",\"Ekstern lenke\":\"d2ERIJDjL\",\"Lukk (modal)\":\"XEkaEs4Hu\",\"\\xf8konomi\":\"iDH_2zM5J\",\"planomr\\xe5de\":\"ZuxXu3Pzk\",\"power outage\":\"kUfXkSZNS\",alert:\"jAFOZ1n3z\",build:\"JNSPT7SNV\",checkmark:\"VmpkguzxI\",energi:\"gxj_UeVcx\",industry:\"vCkKbQNsN\",mennesker:\"QiZDqTRrX\",mobility:\"yU_zHEeqc\",pause:\"wvHjNCmOl\",play:\"axqNs3WO9\",retail:\"hFrn8g0QC\",telephone:\"HnWeyFJ7P\",vind:\"vkozjDfQG\",x:\"f86ZFHWyZ\"};const getProps=({color,height,id,width,...props})=>{return{...props,riJtIX2WW:color??props.riJtIX2WW??\"var(--token-eeb5db77-35b8-461b-96d9-0b12519a91c9, rgb(28, 28, 28))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"dJKJOnsTf\"};};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,riJtIX2WW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dJKJOnsTf\",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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-8x5gob\",className,classNames),\"data-framer-name\":\"Ekstern lenke (legacy)\",layoutDependency:layoutDependency,layoutId:\"dJKJOnsTf\",ref:refBinding,style:{...style},...addPropertyOverrides({axqNs3WO9:{\"data-framer-name\":\"play\"},d2ERIJDjL:{\"data-framer-name\":\"Ekstern lenke\"},f86ZFHWyZ:{\"data-framer-name\":\"x\"},gxj_UeVcx:{\"data-framer-name\":\"energi\"},hFrn8g0QC:{\"data-framer-name\":\"retail\"},HnWeyFJ7P:{\"data-framer-name\":\"telephone\"},iDH_2zM5J:{\"data-framer-name\":\"\\xf8konomi\"},jAFOZ1n3z:{\"data-framer-name\":\"alert\"},JNSPT7SNV:{\"data-framer-name\":\"build\"},jYgu7ktp5:{\"data-framer-name\":\"arrow right\"},kUfXkSZNS:{\"data-framer-name\":\"power outage\"},QiZDqTRrX:{\"data-framer-name\":\"mennesker\"},r_U9Twa5f:{\"data-framer-name\":\"Chevron Ned\"},vCkKbQNsN:{\"data-framer-name\":\"industry\"},vkozjDfQG:{\"data-framer-name\":\"vind\"},VmpkguzxI:{\"data-framer-name\":\"checkmark\"},wvHjNCmOl:{\"data-framer-name\":\"pause\"},XEkaEs4Hu:{\"data-framer-name\":\"Lukk (modal)\"},yU_zHEeqc:{\"data-framer-name\":\"mobility\"},z2Yc2TmqX:{\"data-framer-name\":\"e-post\"},ZuxXu3Pzk:{\"data-framer-name\":\"planomr\\xe5de\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ktdh4d-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bqACJG3l3-container\",nodeId:\"bqACJG3l3\",rendersWithMotion:true,scopeId:\"zG3_9NrYP\",children:/*#__PURE__*/_jsx(SVG,{customColor:riJtIX2WW,customPadding:0,customStrokeWidth:1.5,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6 20L18 8\" stroke=\"black\" stroke-width=\"1.5\"/> <path d=\"M18.25 15.75V7.75H10.25\" stroke=\"black\" stroke-width=\"1.5\"/> </svg>',description:\"\",height:\"100%\",id:\"bqACJG3l3\",layoutId:\"bqACJG3l3\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({axqNs3WO9:{customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M19 12.5L9 19L7 18V6L9 5L19 11.5V12.5Z\" fill=\"black\"/> </svg>',description:\"Start film\",title:\"Play\"},d2ERIJDjL:{customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M8.5 8H15.5L16.5 9V16\" stroke=\"black\" stroke-width=\"2\"/> <path d=\"M16 8.5L7 17.5\" stroke=\"black\" stroke-width=\"2\"/> </svg>',title:\"E-post\"},f86ZFHWyZ:{customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M7 7L17 17\" stroke=\"black\" stroke-width=\"2\"/> <path d=\"M17 7L7 17\" stroke=\"black\" stroke-width=\"2\"/> </svg>'},gxj_UeVcx:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6134 2H17.3257L15.3257 9H21V11.4424L9.38661 22H6.67427L8.67427 15H3V12.5576L14.6134 2ZM14.4243 4.8748L5.48661 13H11.3257L9.57567 19.1252L18.5134 11H12.6743L14.4243 4.8748Z\" fill=\"black\"/> </svg>'},hFrn8g0QC:{customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.38198 3H20.6181L21.6276 5.01904C22.061 5.88586 22.5061 6.96194 22.6305 8.0332C22.7577 9.1284 22.5564 10.3499 21.5275 11.2548C21.3624 11.4 21.1861 11.5329 21 11.652V21H3V11.6519C2.81391 11.5328 2.63758 11.4 2.4725 11.2548C1.44362 10.3499 1.24238 9.1284 1.36957 8.0332C1.49399 6.96194 1.93905 5.88586 2.37246 5.01904L3.38198 3ZM18.6667 12.3333C18.7788 12.3333 18.89 12.3291 19 12.3207V19H14.9999V15H8.99994V19H5V12.3207C5.11004 12.3291 5.22121 12.3333 5.33335 12.3333C6.67364 12.3333 7.87182 11.7248 8.66668 10.769C9.46155 11.7248 10.6597 12.3333 12 12.3333C13.3403 12.3333 14.5385 11.7248 15.3334 10.769C16.1282 11.7248 17.3264 12.3333 18.6667 12.3333ZM7.66668 8H9.66668C9.66668 9.28866 10.7114 10.3333 12 10.3333C13.2887 10.3333 14.3334 9.28866 14.3334 8H16.3334C16.3334 9.28866 17.378 10.3333 18.6667 10.3333C19.2577 10.3333 19.7952 10.1149 20.2067 9.75299C20.5767 9.42758 20.725 8.96339 20.6438 8.26392C20.5598 7.5405 20.2384 6.71291 19.8387 5.91347L19.382 5H4.61805L4.16132 5.91347C3.7616 6.71291 3.44024 7.5405 3.35622 8.26392C3.27499 8.96339 3.42333 9.42758 3.79333 9.75299C4.20486 10.1149 4.74238 10.3333 5.33335 10.3333C6.62202 10.3333 7.66668 9.28866 7.66668 8Z\" fill=\"black\"/> </svg>',description:\"Aneo Retail\",title:\"Aneo Retail\"},HnWeyFJ7P:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.78078 2.99998L10.1075 8.30673L6.97293 11.4413C8.30267 13.7642 10.2358 15.6973 12.5587 17.0271L15.6933 13.8925L21 15.2192V21H20C10.6112 21 3 13.3888 3 4V3.00001L8.78078 2.99998ZM5.0328 4.99999C5.13755 6.5914 5.49048 8.11502 6.05326 9.53251L7.89254 7.69324L7.21922 4.99999L5.0328 4.99999ZM14.4675 17.9467C15.885 18.5095 17.4086 18.8624 19 18.9672V16.7808L16.3067 16.1074L14.4675 17.9467Z\" fill=\"black\"/> </svg>',title:\"Telefon\"},iDH_2zM5J:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 4H9V12H5V18H3V20H5H9H11H13H15H19H21V18H19V8H15V4ZM17 18V10H15V18H17ZM13 18V8V6H11V12V18H13ZM9 18V14H7V18H9Z\" fill=\"black\"/> </svg>'},jAFOZ1n3z:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.10051 5L5 9.10051L5 14.8995L9.1005 19H14.8995L19 14.8995V9.1005L14.8995 5L9.10051 5ZM15.7279 3H8.27208L3 8.27208V15.7279L8.27208 21H15.7279L21 15.7279V8.27208L15.7279 3ZM11 7H13V13H11V7ZM12 17C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16C11 16.5523 11.4477 17 12 17Z\" fill=\"black\"/> </svg>',title:\"Varsel\"},JNSPT7SNV:{customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 4L10 3H14L15 4V5H16.4142L20 8.58579V14H20.4142L22 15.5858V19.4142L20.4142 21H3.58579L2 19.4142V15.5858L3.58579 14H4V8.58579L7.58579 5H9V4ZM9 7H8.41421L6 9.41421V16H4.41421L4 16.4142V18.5858L4.41421 19H19.5858L20 18.5858V16.4142L19.5858 16H18V9.41421L15.5858 7H15V10H13V5H11V10H9V7ZM16 16H8V14H16V16Z\" fill=\"black\"/> </svg>',description:\"Aneo Build\",title:\"Aneo Build\"},jYgu7ktp5:{customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.4571 6.5L18 11.0429L18 13L13.5 17.5\" stroke=\"black\" stroke-width=\"2\"/> <path d=\"M18 12L5 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',title:\"Pil h\\xf8yre\"},kUfXkSZNS:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 11.4424L17.4752 14.6467L16.0594 13.2309L18.5134 11H13.8285L12.9308 10.1022L14.4243 4.8748L10.9038 8.07527L9.488 6.65945L14.6134 2H17.3257L15.3257 9H21V11.4424ZM14.5779 14.5777L15.9937 15.9936L15.9937 15.9936L20.7101 20.71L19.2958 22.1242L14.5121 17.3405L9.38661 22H6.67427L8.67427 15H3V12.5576L6.52485 9.35322L1.29291 4.12128L2.70712 2.70706L8.00641 8.00635L8.00644 8.00632L9.42226 9.42214L9.42222 9.42217L14.5778 14.5778L14.5779 14.5777ZM13.0963 15.9246L11.0693 13.8976L9.57567 19.1252L13.0963 15.9246ZM10.1716 13L7.94067 10.769L5.48661 13H10.1716Z\" fill=\"black\"/> </svg>',title:\"Str\\xf8mbrudd\"},QiZDqTRrX:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14 7C14 8.12034 13.7433 8.90977 13.4153 9.36298C13.1493 9.7306 12.7611 10 12 10C11.2389 10 10.8507 9.7306 10.5847 9.36298C10.2567 8.90977 10 8.12034 10 7C10 6.3907 10.1906 5.88658 10.471 5.56538C10.7133 5.28794 11.145 5 12 5C12.855 5 13.2867 5.28794 13.529 5.56538C13.8094 5.88658 14 6.3907 14 7ZM16 7C16 9.76142 14.7614 12 12 12C9.23858 12 8 9.76142 8 7C8 5 9.23858 3 12 3C14.7614 3 16 5 16 7ZM9.91421 13H5.58579L3 15.5858V19.4142L4.58579 21H19.4142L21 19.4142V15.5858L18.4142 13H14.0858L12.0858 15H11.9142L9.91421 13ZM5 16.4142L6.41421 15H9.08579L11.0858 17H12.9142L14.9142 15H17.5858L19 16.4142V18.5858L18.5858 19H5.41421L5 18.5858V16.4142Z\" fill=\"black\"/> </svg>'},r_U9Twa5f:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6 8L4 10L11 17H13L20 10L18 8L12.5 13.5H11.5L6 8Z\" fill=\"black\"/> </svg>'},vCkKbQNsN:{customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.1633 21.8317C7.37324 21.3138 4.99001 19.6374 3.5313 17.3205C3.13869 16.6968 2.81302 16.0268 2.56445 15.3205C2.19884 14.2815 2 13.164 2 12C2 10.3134 2.41755 8.72431 3.15491 7.33047C3.50346 6.6716 3.92347 6.05634 4.40463 5.49505C6.15961 3.44779 8.728 2.11831 11.6088 2.00751C11.7386 2.00252 11.869 2 12 2C17.5228 2 22 6.47715 22 12C22 17.4042 17.7132 21.8071 12.3545 21.9938C12.2368 21.9979 12.1187 22 12 22C11.9569 22 11.9138 21.9997 11.8708 21.9992L10.1633 21.8317ZM11.2414 19.9645L13.3452 16.3205L12.5534 14.9491C12.3741 14.9825 12.1891 15 12 15C11.8109 15 11.6259 14.9825 11.4465 14.949L10.0773 17.3205L6.02556 17.3205C7.33295 18.7875 9.17259 19.7699 11.2414 19.9645ZM9.71639 13.9456L8.92262 15.3205L4.7195 15.3205C4.25747 14.3091 4 13.1846 4 12C4 11.1232 4.14105 10.2794 4.40169 9.48996L6.42264 12.9904H9.16732C9.2908 13.3436 9.47849 13.6667 9.71639 13.9456ZM9.17413 10.9904H7.57734L5.48178 7.36073C6.62931 5.75133 8.35801 4.58494 10.3615 4.16794L8.34523 7.66022L9.72302 10.0466C9.48633 10.3223 9.29883 10.6414 9.17413 10.9904ZM12.5434 9.04909C12.3672 9.01685 12.1856 9 12 9C11.8144 9 11.6328 9.01685 11.4565 9.04911L10.6546 7.66022L12.748 4.0345C14.812 4.22588 16.6486 5.20136 17.9572 6.66023L13.9226 6.66022L12.5434 9.04909ZM14.8259 10.9904C14.7012 10.6414 14.5136 10.3222 14.2769 10.0466L15.0773 8.66022L19.2717 8.66023C19.7392 9.67664 20 10.8079 20 12C20 12.8722 19.8604 13.7119 19.6023 14.4978L17.5773 10.9904H14.8259ZM14.2836 13.9457C14.5215 13.6667 14.7092 13.3436 14.8327 12.9904H16.4226L18.5244 16.6307C17.3744 18.2479 15.6382 19.4193 13.6257 19.8347L15.6546 16.3205L14.2836 13.9457ZM13 12C13 12.5523 12.5523 13 12 13C11.4477 13 11 12.5523 11 12C11 11.4477 11.4477 11 12 11C12.5523 11 13 11.4477 13 12Z\" fill=\"black\"/> </svg>',description:\"Aneo Industry\",title:\"Aneo Industry\"},vkozjDfQG:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 10C9 8.69378 9.83481 7.58254 11 7.17071V2H13V7.17071C14.1652 7.58254 15 8.69378 15 10C15 10.1869 14.9829 10.3697 14.9502 10.5471L19.4066 13.1071L18.4103 14.8413L13.9506 12.2794C13.673 12.5171 13.3516 12.705 13 12.8293V20H16V22H8V20H11L11 12.8293C10.6484 12.705 10.327 12.5171 10.0494 12.2794L5.58964 14.8413L4.59341 13.1071L9.04977 10.5471C9.01708 10.3697 9 10.1869 9 10ZM13 10C13 10.5523 12.5523 11 12 11C11.4477 11 11 10.5523 11 10C11 9.44772 11.4477 9 12 9C12.5523 9 13 9.44772 13 10Z\" fill=\"black\"/> </svg>'},VmpkguzxI:{customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M19 7L10 16L5 11\" stroke=\"black\" stroke-width=\"2\"/> </svg>'},wvHjNCmOl:{customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6 6L7 5H9L10 6V18L9 19H7L6 18V6Z\" fill=\"black\"/> <path d=\"M14 6L15 5H17L18 6V18L17 19H15L14 18V6Z\" fill=\"black\"/> </svg>',description:\"Pause film\",title:\"Pause\"},XEkaEs4Hu:{customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M8 8L16 16\" stroke=\"black\" stroke-width=\"2\"/> <path d=\"M16 8L8 16\" stroke=\"black\" stroke-width=\"2\"/> </svg>'},yU_zHEeqc:{customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.4142 2H6.58579L4 4.58579V19.4142L6.58579 22H10.4142L13 19.4142V17H14.7808L16 12.1231V6H8V12.1231L9.21922 17H11V18.5858L9.58579 20H7.41421L6 18.5858V5.41421L7.41421 4H16.5858L18 5.41421V22H20V4.58579L17.4142 2ZM10 11.8769V10H14V11.8769L13.2192 15H10.7808L10 11.8769Z\" fill=\"black\"/> </svg>',description:\"Aneo Mobility\",title:\"Aneo Mobility\"},z2Yc2TmqX:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 6H20V6.46483L12 11.7982L4 6.46481V6ZM4 8.86851V18H20V8.86853L12 14.2019L4 8.86851ZM2 20V4H22V20H2Z\" fill=\"black\"/> </svg>',title:\"E-post\"},ZuxXu3Pzk:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.625 15C12.625 15 17 11.1 17 7.2C17 4.32812 14.7614 2 12 2C9.23858 2 7 4.32812 7 7.2C7 11.1 11.375 15 11.375 15H12.625ZM12 12.8035C12.3493 12.4318 12.7817 11.9386 13.2109 11.3647C14.2409 9.9874 15 8.47845 15 7.2C15 5.35803 13.5836 4 12 4C10.4164 4 9 5.35803 9 7.2C9 8.47845 9.75912 9.9874 10.7891 11.3647C11.2183 11.9386 11.6507 12.4318 12 12.8035ZM4.24568 12H6.99999V14H5.75429L4.32572 19H19.6743L18.2457 14H17V12H19.7543L22.3257 21H1.67426L4.24568 12ZM12 5.5C11.1716 5.5 10.5 6.17157 10.5 7C10.5 7.82843 11.1716 8.5 12 8.5C12.8284 8.5 13.5 7.82843 13.5 7C13.5 6.17157 12.8284 5.5 12 5.5Z\" fill=\"black\"/> </svg>g width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 4H9V12H5V18H3V20H5H9H11H13H15H19H21V18H19V8H15V4ZM17 18V10H15V18H17ZM13 18V8V6H11V12V18H13ZM9 18V14H7V18H9Z\" fill=\"black\"/> </svg>',title:\"Planomr\\xe5de\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TKqmc.framer-2dq2sm, .framer-TKqmc .framer-2dq2sm { display: block; }\",\".framer-TKqmc.framer-8x5gob { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-TKqmc .framer-1ktdh4d-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TKqmc.framer-8x5gob { gap: 0px; } .framer-TKqmc.framer-8x5gob > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TKqmc.framer-8x5gob > :first-child { margin-left: 0px; } .framer-TKqmc.framer-8x5gob > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"vkozjDfQG\":{\"layout\":[\"fixed\",\"fixed\"]},\"gxj_UeVcx\":{\"layout\":[\"fixed\",\"fixed\"]},\"QiZDqTRrX\":{\"layout\":[\"fixed\",\"fixed\"]},\"iDH_2zM5J\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZuxXu3Pzk\":{\"layout\":[\"fixed\",\"fixed\"]},\"jAFOZ1n3z\":{\"layout\":[\"fixed\",\"fixed\"]},\"kUfXkSZNS\":{\"layout\":[\"fixed\",\"fixed\"]},\"HnWeyFJ7P\":{\"layout\":[\"fixed\",\"fixed\"]},\"z2Yc2TmqX\":{\"layout\":[\"fixed\",\"fixed\"]},\"d2ERIJDjL\":{\"layout\":[\"fixed\",\"fixed\"]},\"axqNs3WO9\":{\"layout\":[\"fixed\",\"fixed\"]},\"wvHjNCmOl\":{\"layout\":[\"fixed\",\"fixed\"]},\"r_U9Twa5f\":{\"layout\":[\"fixed\",\"fixed\"]},\"XEkaEs4Hu\":{\"layout\":[\"fixed\",\"fixed\"]},\"f86ZFHWyZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"VmpkguzxI\":{\"layout\":[\"fixed\",\"fixed\"]},\"jYgu7ktp5\":{\"layout\":[\"fixed\",\"fixed\"]},\"yU_zHEeqc\":{\"layout\":[\"fixed\",\"fixed\"]},\"vCkKbQNsN\":{\"layout\":[\"fixed\",\"fixed\"]},\"JNSPT7SNV\":{\"layout\":[\"fixed\",\"fixed\"]},\"hFrn8g0QC\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"riJtIX2WW\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzG3_9NrYP=withCSS(Component,css,\"framer-TKqmc\");export default FramerzG3_9NrYP;FramerzG3_9NrYP.displayName=\"Icons\";FramerzG3_9NrYP.defaultProps={height:24,width:24};addPropertyControls(FramerzG3_9NrYP,{variant:{options:[\"dJKJOnsTf\",\"vkozjDfQG\",\"gxj_UeVcx\",\"QiZDqTRrX\",\"iDH_2zM5J\",\"ZuxXu3Pzk\",\"jAFOZ1n3z\",\"kUfXkSZNS\",\"HnWeyFJ7P\",\"z2Yc2TmqX\",\"d2ERIJDjL\",\"axqNs3WO9\",\"wvHjNCmOl\",\"r_U9Twa5f\",\"XEkaEs4Hu\",\"f86ZFHWyZ\",\"VmpkguzxI\",\"jYgu7ktp5\",\"yU_zHEeqc\",\"vCkKbQNsN\",\"JNSPT7SNV\",\"hFrn8g0QC\"],optionTitles:[\"Ekstern lenke (legacy)\",\"vind\",\"energi\",\"mennesker\",\"\\xf8konomi\",\"planomr\\xe5de\",\"alert\",\"power outage\",\"telephone\",\"e-post\",\"Ekstern lenke\",\"play\",\"pause\",\"Chevron Ned\",\"Lukk (modal)\",\"x\",\"checkmark\",\"arrow right\",\"mobility\",\"industry\",\"build\",\"retail\"],title:\"Variant\",type:ControlType.Enum},riJtIX2WW:{defaultValue:'var(--token-eeb5db77-35b8-461b-96d9-0b12519a91c9, rgb(28, 28, 28)) /* {\"name\":\"Black\"} */',title:\"Color\",type:ControlType.Color}});addFonts(FramerzG3_9NrYP,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzG3_9NrYP\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"riJtIX2WW\\\":\\\"color\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vkozjDfQG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gxj_UeVcx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QiZDqTRrX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iDH_2zM5J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZuxXu3Pzk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jAFOZ1n3z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kUfXkSZNS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HnWeyFJ7P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z2Yc2TmqX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"d2ERIJDjL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"axqNs3WO9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wvHjNCmOl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r_U9Twa5f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XEkaEs4Hu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f86ZFHWyZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VmpkguzxI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jYgu7ktp5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yU_zHEeqc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vCkKbQNsN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JNSPT7SNV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hFrn8g0QC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"24\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zG3_9NrYP.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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "riJtIX2WW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerzG3_9NrYP", "withCSS", "zG3_9NrYP_default", "addPropertyControls", "ControlType", "addFonts"]
}
