{"version":3,"file":"Rh55bi4ZV.Dr3BlV9l.mjs","names":["t","i","r","o","u","a","f","c","v","l","d","s","b","e","n","p","a","b","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","className","css","NavLink","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","className","css","className","css"],"sources":["https:/ga.jspm.io/npm:lodash.debounce@4.0.8/index.js","https:/framerusercontent.com/modules/I1SgHrPH606FhH6Ly7by/mMK96VH7A6r4pw3GtT9c/TableOfContents.js","https:/framerusercontent.com/modules/EGwDiOGGmG5Mi3P6ZtAJ/CNNffk2LpRAruPzVuihe/g8h7Qo5MM.js","https:/framerusercontent.com/modules/JhdKWUiFznY9tMCN9XY9/06Bsb5WSIxN1AtTaQ5vP/cClcm885L.js","https:/framerusercontent.com/modules/M5wOMt3MGB4gtq7OVa9o/XEBC1WwyDzVWX6da66O2/Rh55bi4ZV.js"],"sourcesContent":["var e=\"undefined\"!==typeof globalThis?globalThis:\"undefined\"!==typeof self?self:global;var t={};var n=\"Expected a function\";var i=0/0;var r=\"[object Symbol]\";var o=/^\\s+|\\s+$/g;var u=/^[-+]0x[0-9a-f]+$/i;var a=/^0b[01]+$/i;var f=/^0o[0-7]+$/i;var c=parseInt;var v=\"object\"==typeof e&&e&&e.Object===Object&&e;var l=\"object\"==typeof self&&self&&self.Object===Object&&self;var d=v||l||Function(\"return this\")();var s=Object.prototype;var b=s.toString;var p=Math.max,m=Math.min;var now=function(){return d.Date.now()};function debounce(t,i,r){var o,u,a,f,c,v,l=0,d=false,s=false,b=true;if(\"function\"!=typeof t)throw new TypeError(n);i=toNumber(i)||0;if(isObject(r)){d=!!r.leading;s=\"maxWait\"in r;a=s?p(toNumber(r.maxWait)||0,i):a;b=\"trailing\"in r?!!r.trailing:b}function invokeFunc(e){var n=o,i=u;o=u=void 0;l=e;f=t.apply(i,n);return f}function leadingEdge(e){l=e;c=setTimeout(timerExpired,i);return d?invokeFunc(e):f}function remainingWait(e){var t=e-v,n=e-l,r=i-t;return s?m(r,a-n):r}function shouldInvoke(e){var t=e-v,n=e-l;return void 0===v||t>=i||t<0||s&&n>=a}function timerExpired(){var e=now();if(shouldInvoke(e))return trailingEdge(e);c=setTimeout(timerExpired,remainingWait(e))}function trailingEdge(e){c=void 0;if(b&&o)return invokeFunc(e);o=u=void 0;return f}function cancel(){void 0!==c&&clearTimeout(c);l=0;o=v=u=c=void 0}function flush(){return void 0===c?f:trailingEdge(now())}function debounced(){var t=now(),n=shouldInvoke(t);o=arguments;u=this||e;v=t;if(n){if(void 0===c)return leadingEdge(v);if(s){c=setTimeout(timerExpired,i);return invokeFunc(v)}}void 0===c&&(c=setTimeout(timerExpired,i));return f}debounced.cancel=cancel;debounced.flush=flush;return debounced}function isObject(e){var t=typeof e;return!!e&&(\"object\"==t||\"function\"==t)}function isObjectLike(e){return!!e&&\"object\"==typeof e}function isSymbol(e){return\"symbol\"==typeof e||isObjectLike(e)&&b.call(e)==r}function toNumber(e){if(\"number\"==typeof e)return e;if(isSymbol(e))return i;if(isObject(e)){var t=\"function\"==typeof e.valueOf?e.valueOf():e;e=isObject(t)?t+\"\":t}if(\"string\"!=typeof e)return 0===e?e:+e;e=e.replace(o,\"\");var n=a.test(e);return n||f.test(e)?c(e.slice(2),n?2:8):u.test(e)?i:+e}t=debounce;var g=t;export default g;\n\n//# sourceMappingURL=index.js.map","//@ts-ignore\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect,useState,cloneElement,useMemo}from\"react\";import debounce from\"lodash.debounce\";const HEADING_TO_DISPLAY=[\"h2\"];export default function TableOfContents(props){const[activeHeading,setActiveHeading]=useState(\"\");// Error check for missing description or children\nconst result=useMemo(()=>{// Ensure `headings` is an array, default to empty array if not\nconst headings=Array.isArray(props?.description?.props?.children)?props.description.props.children:[];if(headings.length===0){console.error(\"No valid headings found.\");}return headings.filter(item=>item&&HEADING_TO_DISPLAY.includes(item.type)&&item?.props).map((item,index)=>{const children=item.props.children;const{formattedId,formattedHeading}=formatHeading(children,index);return{id:formattedId,heading:formattedHeading,type:item.type,originalIndex:index};}).sort((a,b)=>a.originalIndex-b.originalIndex)// Sort here to optimize rendering\n;},[props.description]);useEffect(()=>{if(typeof IntersectionObserver===\"undefined\"){console.error(\"IntersectionObserver is not supported in this environment.\");return;}const observer=new IntersectionObserver(entries=>{entries.forEach(entry=>{if(entry.isIntersecting){const id=entry.target.id;setActiveHeading(id);}});});const updateObservers=debounce(()=>{const headings=document.querySelectorAll('[data-framer-name=\"Content\"] > [data-framer-component-type=\"RichTextContainer\"] > h2');observer.disconnect();headings.forEach(heading=>observer.observe(heading));},200);const mutationObserver=new MutationObserver(updateObservers);mutationObserver.observe(document.body,{childList:true,subtree:true});updateObservers();return()=>{observer.disconnect();mutationObserver.disconnect();};},[]);return /*#__PURE__*/_jsx(\"ul\",{className:\"framer-text\",style:{listStyleType:\"none\",padding:0,margin:0},children:result.length>0?result.map(({id,heading,originalIndex})=>{const child=props?.heading?.[0]?.props?.children?.props?.children??props.heading?.[0]??null;if(!child){console.error(\"No valid heading component found.\");return null;}// Use a combination of id and index to ensure a unique key\nconst uniqueKey=id?`${id}-${originalIndex}`:`${originalIndex}`;const ComponentCopy=/*#__PURE__*/cloneElement(child,{variant:activeHeading===id?\"Active\":\"Inactive\",title:heading,link:`../${props.path}/${props.slug}${id?\"#\"+id:\"\"}`,style:{width:\"100%\"}});return /*#__PURE__*/_jsx(\"li\",{children:ComponentCopy},uniqueKey);}):/*#__PURE__*/_jsx(\"li\",{children:\"No headings available.\"})});}addPropertyControls(TableOfContents,{description:{title:\"Content\",//@ts-ignore\ntype:ControlType.RichText},path:{title:\"DefaultPath\",defaultValue:\"blog\",type:ControlType.String},slug:{title:\"Slug\",//@ts-ignore\ntype:ControlType.String},heading:{type:ControlType.ComponentInstance}});const formatHeading=(children,index)=>{let formattedHeading=\"\";let formattedId=\"\";// Check if children is missing or is an invalid type\nif(!children){console.error(`Heading at index ${index} is missing content.`);return{formattedId,formattedHeading};}// If children is an array, join the text content of its elements\nif(Array.isArray(children)){formattedHeading=children.map(child=>typeof child===\"string\"?child:child?.props?.children||\"\").join(\" \")// Join array elements into a single string\n.trim();}else if(typeof children===\"string\"){formattedHeading=children.trim();}// Generate a formatted ID if there is valid text content\nif(formattedHeading){formattedId=formattedHeading.toLowerCase().replace(/[^a-zäöü]+/g,\"-\").replace(/^-+|-+$/g,\"\");}return{formattedId,formattedHeading};};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TableOfContents\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContents.map","// Generated by Framer (9f2fb1c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/1TIgpLYXJoR448oYs2WZ/k6WYl9cxnKVtAcejNcED/E36Ev_q2s.js\";const enabledGestures={bX_9YM2Fb:{hover:true},fNA7yE2uP:{hover:true}};const cycleOrder=[\"fNA7yE2uP\",\"bX_9YM2Fb\"];const serializationHash=\"framer-OudvB\";const variantClassNames={bX_9YM2Fb:\"framer-v-oezmq8\",fNA7yE2uP:\"framer-v-1wf308m\"};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={Active:\"bX_9YM2Fb\",Inactive:\"fNA7yE2uP\"};const getProps=({height,id,link,title,width,...props})=>{return{...props,EinRrqha2:link??props.EinRrqha2,variant:humanReadableVariantMap[props.variant]??props.variant??\"fNA7yE2uP\",YeCLcIG7G:title??props.YeCLcIG7G??\"Getting Started\"};};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,YeCLcIG7G,EinRrqha2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fNA7yE2uP\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];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:EinRrqha2,motionChild:true,nodeId:\"fNA7yE2uP\",openInNewTab:false,scopeId:\"g8h7Qo5MM\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1wf308m\",className,classNames)} framer-1h4oely`,\"data-border\":true,\"data-framer-name\":\"Inactive\",layoutDependency:layoutDependency,layoutId:\"fNA7yE2uP\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(229, 231, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},variants:{bX_9YM2Fb:{\"--border-color\":\"var(--token-262bfdd0-6b98-4303-8c7e-72fedcc10d8f, rgb(26, 115, 232))\"}},...addPropertyOverrides({\"bX_9YM2Fb-hover\":{\"data-framer-name\":undefined},\"fNA7yE2uP-hover\":{\"data-framer-name\":undefined},bX_9YM2Fb:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6liab0\",layoutDependency:layoutDependency,layoutId:\"z1tbhCeEp\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:0},variants:{bX_9YM2Fb:{backgroundColor:\"var(--token-262bfdd0-6b98-4303-8c7e-72fedcc10d8f, rgb(26, 115, 232))\",opacity:1}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qr4xtq\",\"data-styles-preset\":\"E36Ev_q2s\",children:\"Getting Started\"})}),className:\"framer-v68iyh\",\"data-framer-name\":\"Nav Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s5p_9bzkF\",text:YeCLcIG7G,variants:{\"fNA7yE2uP-hover\":{\"--extracted-r6o4lv\":\"var(--token-262bfdd0-6b98-4303-8c7e-72fedcc10d8f, rgb(26, 115, 232))\"},bX_9YM2Fb:{\"--extracted-r6o4lv\":\"var(--token-262bfdd0-6b98-4303-8c7e-72fedcc10d8f, rgb(26, 115, 232))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"fNA7yE2uP-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qr4xtq\",\"data-styles-preset\":\"E36Ev_q2s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-262bfdd0-6b98-4303-8c7e-72fedcc10d8f, rgb(26, 115, 232)))\"},children:\"Getting Started\"})})},bX_9YM2Fb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qr4xtq\",\"data-styles-preset\":\"E36Ev_q2s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-262bfdd0-6b98-4303-8c7e-72fedcc10d8f, rgb(26, 115, 232)))\"},children:\"Getting Started\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OudvB.framer-1h4oely, .framer-OudvB .framer-1h4oely { display: block; }\",\".framer-OudvB.framer-1wf308m { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; overflow: visible; padding: 5px 0px 5px 10px; position: relative; text-decoration: none; width: 200px; }\",\".framer-OudvB .framer-6liab0 { flex: none; height: 2px; overflow: visible; position: relative; width: 10px; }\",\".framer-OudvB .framer-v68iyh { --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OudvB.framer-1wf308m { gap: 0px; } .framer-OudvB.framer-1wf308m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OudvB.framer-1wf308m > :first-child { margin-left: 0px; } .framer-OudvB.framer-1wf308m > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-OudvB[data-border=\"true\"]::after, .framer-OudvB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 31\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"200px\",null,null,null]},\"bX_9YM2Fb\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"200px\",null,null,null]},\"FXz_xjlVk\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"200px\",null,null,null]},\"sJUfpp14U\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"200px\",null,null,null]}}}\n * @framerVariables {\"YeCLcIG7G\":\"title\",\"EinRrqha2\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerg8h7Qo5MM=withCSS(Component,css,\"framer-OudvB\");export default Framerg8h7Qo5MM;Framerg8h7Qo5MM.displayName=\"Nav Link\";Framerg8h7Qo5MM.defaultProps={height:31,width:200};addPropertyControls(Framerg8h7Qo5MM,{variant:{options:[\"fNA7yE2uP\",\"bX_9YM2Fb\"],optionTitles:[\"Inactive\",\"Active\"],title:\"Variant\",type:ControlType.Enum},YeCLcIG7G:{defaultValue:\"Getting Started\",displayTextArea:false,title:\"Title\",type:ControlType.String},EinRrqha2:{title:\"Link\",type:ControlType.Link}});addFonts(Framerg8h7Qo5MM,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg8h7Qo5MM\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"31\",\"framerVariables\":\"{\\\"YeCLcIG7G\\\":\\\"title\\\",\\\"EinRrqha2\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"200px\\\",null,null,null]},\\\"bX_9YM2Fb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"200px\\\",null,null,null]},\\\"FXz_xjlVk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"200px\\\",null,null,null]},\\\"sJUfpp14U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"200px\\\",null,null,null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g8h7Qo5MM.map","// Generated by Framer (9f2fb1c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,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 TableOfContents from\"https://framerusercontent.com/modules/I1SgHrPH606FhH6Ly7by/mMK96VH7A6r4pw3GtT9c/TableOfContents.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/yqRwa461jYkFHHpdD3rD/nmzTqoKdz2KnuBo1hShZ/inwSkcFXB.js\";import NavLink from\"https://framerusercontent.com/modules/EGwDiOGGmG5Mi3P6ZtAJ/CNNffk2LpRAruPzVuihe/g8h7Qo5MM.js\";const NavLinkFonts=getFonts(NavLink);const TableOfContentsFonts=getFonts(TableOfContents);const serializationHash=\"framer-3NNWW\";const variantClassNames={l6K4XfbPT:\"framer-v-huwy1m\"};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 getProps=({content,defaultPath,height,id,slug,title,width,...props})=>{return{...props,LZXT065jA:defaultPath??props.LZXT065jA??\"blog\",M38UDbA06:content??props.M38UDbA06??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Content\"})}),pyQp2DkPY:slug??props.pyQp2DkPY??\"customer-engagement-ziele-arten-und-kpis-im-\\xfcberblick\",vyK9t0pJV:title??props.vyK9t0pJV??\"Inhaltsverzeichnis\"};};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,M38UDbA06,pyQp2DkPY,vyK9t0pJV,LZXT065jA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"l6K4XfbPT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];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__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-huwy1m\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"l6K4XfbPT\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tnbp25\",\"data-styles-preset\":\"inwSkcFXB\",children:\"Inhaltsverzeichnis\"})}),className:\"framer-14eyf7j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y0MduCEhY\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vyK9t0pJV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l29dw6-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"fojrC9d_u-container\",nodeId:\"fojrC9d_u\",rendersWithMotion:true,scopeId:\"cClcm885L\",children:/*#__PURE__*/_jsx(TableOfContents,{description:M38UDbA06,heading:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13bpq4w-container\",\"data-framer-name\":\"Nav Link 1\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"b4V_O7bck-container\",name:\"Nav Link 1\",nodeId:\"b4V_O7bck\",rendersWithMotion:true,scopeId:\"cClcm885L\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",id:\"b4V_O7bck\",layoutId:\"b4V_O7bck\",name:\"Nav Link 1\",variant:\"fNA7yE2uP\",width:\"100%\",YeCLcIG7G:\"Getting started\"})})})],height:\"100%\",id:\"fojrC9d_u\",layoutId:\"fojrC9d_u\",path:LZXT065jA,slug:pyQp2DkPY,style:{width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3NNWW.framer-jlahdo, .framer-3NNWW .framer-jlahdo { display: block; }\",\".framer-3NNWW.framer-huwy1m { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 274px; }\",\".framer-3NNWW .framer-14eyf7j { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3NNWW .framer-l29dw6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3NNWW .framer-13bpq4w-container { height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3NNWW.framer-huwy1m { gap: 0px; } .framer-3NNWW.framer-huwy1m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3NNWW.framer-huwy1m > :first-child { margin-top: 0px; } .framer-3NNWW.framer-huwy1m > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 53\n * @framerIntrinsicWidth 274\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"M38UDbA06\":\"content\",\"pyQp2DkPY\":\"slug\",\"vyK9t0pJV\":\"title\",\"LZXT065jA\":\"defaultPath\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercClcm885L=withCSS(Component,css,\"framer-3NNWW\");export default FramercClcm885L;FramercClcm885L.displayName=\"ToCNav\";FramercClcm885L.defaultProps={height:53,width:274};addPropertyControls(FramercClcm885L,{M38UDbA06:{defaultValue:\"<p>Content</p>\",title:\"Content\",type:ControlType.RichText},pyQp2DkPY:{defaultValue:\"customer-engagement-ziele-arten-und-kpis-im-\\xfcberblick\",title:\"Slug\",type:ControlType.String},vyK9t0pJV:{defaultValue:\"Inhaltsverzeichnis\",displayTextArea:false,title:\"Title\",type:ControlType.String},LZXT065jA:{defaultValue:\"blog\",title:\"Default Path\",type:ControlType.String}});addFonts(FramercClcm885L,[{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\"}]},...NavLinkFonts,...TableOfContentsFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercClcm885L\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"274\",\"framerIntrinsicHeight\":\"53\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"M38UDbA06\\\":\\\"content\\\",\\\"pyQp2DkPY\\\":\\\"slug\\\",\\\"vyK9t0pJV\\\":\\\"title\\\",\\\"LZXT065jA\\\":\\\"defaultPath\\\"}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (e42f2cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-yB8JF\";const variantClassNames={xbjMVEtqf:\"framer-v-1ci6spi\"};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 getProps=({background,height,id,width,...props})=>{var _ref;return{...props,aVicsYDZc:(_ref=background!==null&&background!==void 0?background:props.aVicsYDZc)!==null&&_ref!==void 0?_ref:\"rgb(255, 200, 0)\"};};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,aVicsYDZc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"xbjMVEtqf\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ci6spi\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"xbjMVEtqf\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1urr2u7\",\"data-framer-name\":\"Star\",fill:aVicsYDZc,intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"bQm85qRik\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m229.06 108.79-48.7 42 14.88 62.79a8.4 8.4 0 0 1-12.52 9.17L128 189.09l-54.72 33.65a8.4 8.4 0 0 1-12.52-9.17l14.88-62.79-48.7-42A8.46 8.46 0 0 1 31.73 94l63.91-5.2 24.62-59.6a8.36 8.36 0 0 1 15.48 0l24.62 59.6 63.91 5.2a8.46 8.46 0 0 1 4.79 14.79Z\" opacity=\".2\"/><path d=\"M239.18 97.26A16.38 16.38 0 0 0 224.92 86l-59-4.76-22.78-55.09a16.36 16.36 0 0 0-30.27 0L90.11 81.23 31.08 86a16.46 16.46 0 0 0-9.37 28.86l45 38.83L53 211.75a16.38 16.38 0 0 0 24.5 17.82l50.5-31.08 50.53 31.08A16.4 16.4 0 0 0 203 211.75l-13.76-58.07 45-38.83a16.43 16.43 0 0 0 4.94-17.59Zm-15.34 5.47-48.7 42a8 8 0 0 0-2.56 7.91l14.88 62.8a.37.37 0 0 1-.17.48c-.18.14-.23.11-.38 0l-54.72-33.65a8 8 0 0 0-8.38 0l-54.72 33.67c-.15.09-.19.12-.38 0a.37.37 0 0 1-.17-.48l14.88-62.8a8 8 0 0 0-2.56-7.91l-48.7-42c-.12-.1-.23-.19-.13-.5s.18-.27.33-.29l63.92-5.16a8 8 0 0 0 6.72-4.94l24.62-59.61c.08-.17.11-.25.35-.25s.27.08.35.25L153 91.86a8 8 0 0 0 6.75 4.92l63.92 5.16c.15 0 .24 0 .33.29s0 .4-.16.5Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u3jhr9\",\"data-framer-name\":\"Star\",fill:aVicsYDZc,intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"EVAZ0i9cs\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m229.06 108.79-48.7 42 14.88 62.79a8.4 8.4 0 0 1-12.52 9.17L128 189.09l-54.72 33.65a8.4 8.4 0 0 1-12.52-9.17l14.88-62.79-48.7-42A8.46 8.46 0 0 1 31.73 94l63.91-5.2 24.62-59.6a8.36 8.36 0 0 1 15.48 0l24.62 59.6 63.91 5.2a8.46 8.46 0 0 1 4.79 14.79Z\" opacity=\".2\"/><path d=\"M239.18 97.26A16.38 16.38 0 0 0 224.92 86l-59-4.76-22.78-55.09a16.36 16.36 0 0 0-30.27 0L90.11 81.23 31.08 86a16.46 16.46 0 0 0-9.37 28.86l45 38.83L53 211.75a16.38 16.38 0 0 0 24.5 17.82l50.5-31.08 50.53 31.08A16.4 16.4 0 0 0 203 211.75l-13.76-58.07 45-38.83a16.43 16.43 0 0 0 4.94-17.59Zm-15.34 5.47-48.7 42a8 8 0 0 0-2.56 7.91l14.88 62.8a.37.37 0 0 1-.17.48c-.18.14-.23.11-.38 0l-54.72-33.65a8 8 0 0 0-8.38 0l-54.72 33.67c-.15.09-.19.12-.38 0a.37.37 0 0 1-.17-.48l14.88-62.8a8 8 0 0 0-2.56-7.91l-48.7-42c-.12-.1-.23-.19-.13-.5s.18-.27.33-.29l63.92-5.16a8 8 0 0 0 6.72-4.94l24.62-59.61c.08-.17.11-.25.35-.25s.27.08.35.25L153 91.86a8 8 0 0 0 6.75 4.92l63.92 5.16c.15 0 .24 0 .33.29s0 .4-.16.5Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y8gm49\",\"data-framer-name\":\"Star\",fill:aVicsYDZc,intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"a8oGcRqhg\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m229.06 108.79-48.7 42 14.88 62.79a8.4 8.4 0 0 1-12.52 9.17L128 189.09l-54.72 33.65a8.4 8.4 0 0 1-12.52-9.17l14.88-62.79-48.7-42A8.46 8.46 0 0 1 31.73 94l63.91-5.2 24.62-59.6a8.36 8.36 0 0 1 15.48 0l24.62 59.6 63.91 5.2a8.46 8.46 0 0 1 4.79 14.79Z\" opacity=\".2\"/><path d=\"M239.18 97.26A16.38 16.38 0 0 0 224.92 86l-59-4.76-22.78-55.09a16.36 16.36 0 0 0-30.27 0L90.11 81.23 31.08 86a16.46 16.46 0 0 0-9.37 28.86l45 38.83L53 211.75a16.38 16.38 0 0 0 24.5 17.82l50.5-31.08 50.53 31.08A16.4 16.4 0 0 0 203 211.75l-13.76-58.07 45-38.83a16.43 16.43 0 0 0 4.94-17.59Zm-15.34 5.47-48.7 42a8 8 0 0 0-2.56 7.91l14.88 62.8a.37.37 0 0 1-.17.48c-.18.14-.23.11-.38 0l-54.72-33.65a8 8 0 0 0-8.38 0l-54.72 33.67c-.15.09-.19.12-.38 0a.37.37 0 0 1-.17-.48l14.88-62.8a8 8 0 0 0-2.56-7.91l-48.7-42c-.12-.1-.23-.19-.13-.5s.18-.27.33-.29l63.92-5.16a8 8 0 0 0 6.72-4.94l24.62-59.61c.08-.17.11-.25.35-.25s.27.08.35.25L153 91.86a8 8 0 0 0 6.75 4.92l63.92 5.16c.15 0 .24 0 .33.29s0 .4-.16.5Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19mhfjk\",\"data-framer-name\":\"Star\",fill:aVicsYDZc,intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"ldxD0F3pZ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m229.06 108.79-48.7 42 14.88 62.79a8.4 8.4 0 0 1-12.52 9.17L128 189.09l-54.72 33.65a8.4 8.4 0 0 1-12.52-9.17l14.88-62.79-48.7-42A8.46 8.46 0 0 1 31.73 94l63.91-5.2 24.62-59.6a8.36 8.36 0 0 1 15.48 0l24.62 59.6 63.91 5.2a8.46 8.46 0 0 1 4.79 14.79Z\" opacity=\".2\"/><path d=\"M239.18 97.26A16.38 16.38 0 0 0 224.92 86l-59-4.76-22.78-55.09a16.36 16.36 0 0 0-30.27 0L90.11 81.23 31.08 86a16.46 16.46 0 0 0-9.37 28.86l45 38.83L53 211.75a16.38 16.38 0 0 0 24.5 17.82l50.5-31.08 50.53 31.08A16.4 16.4 0 0 0 203 211.75l-13.76-58.07 45-38.83a16.43 16.43 0 0 0 4.94-17.59Zm-15.34 5.47-48.7 42a8 8 0 0 0-2.56 7.91l14.88 62.8a.37.37 0 0 1-.17.48c-.18.14-.23.11-.38 0l-54.72-33.65a8 8 0 0 0-8.38 0l-54.72 33.67c-.15.09-.19.12-.38 0a.37.37 0 0 1-.17-.48l14.88-62.8a8 8 0 0 0-2.56-7.91l-48.7-42c-.12-.1-.23-.19-.13-.5s.18-.27.33-.29l63.92-5.16a8 8 0 0 0 6.72-4.94l24.62-59.61c.08-.17.11-.25.35-.25s.27.08.35.25L153 91.86a8 8 0 0 0 6.75 4.92l63.92 5.16c.15 0 .24 0 .33.29s0 .4-.16.5Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6ovoo3\",\"data-framer-name\":\"Star\",fill:aVicsYDZc,intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"mGrg4SWnZ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m229.06 108.79-48.7 42 14.88 62.79a8.4 8.4 0 0 1-12.52 9.17L128 189.09l-54.72 33.65a8.4 8.4 0 0 1-12.52-9.17l14.88-62.79-48.7-42A8.46 8.46 0 0 1 31.73 94l63.91-5.2 24.62-59.6a8.36 8.36 0 0 1 15.48 0l24.62 59.6 63.91 5.2a8.46 8.46 0 0 1 4.79 14.79Z\" opacity=\".2\"/><path d=\"M239.18 97.26A16.38 16.38 0 0 0 224.92 86l-59-4.76-22.78-55.09a16.36 16.36 0 0 0-30.27 0L90.11 81.23 31.08 86a16.46 16.46 0 0 0-9.37 28.86l45 38.83L53 211.75a16.38 16.38 0 0 0 24.5 17.82l50.5-31.08 50.53 31.08A16.4 16.4 0 0 0 203 211.75l-13.76-58.07 45-38.83a16.43 16.43 0 0 0 4.94-17.59Zm-15.34 5.47-48.7 42a8 8 0 0 0-2.56 7.91l14.88 62.8a.37.37 0 0 1-.17.48c-.18.14-.23.11-.38 0l-54.72-33.65a8 8 0 0 0-8.38 0l-54.72 33.67c-.15.09-.19.12-.38 0a.37.37 0 0 1-.17-.48l14.88-62.8a8 8 0 0 0-2.56-7.91l-48.7-42c-.12-.1-.23-.19-.13-.5s.18-.27.33-.29l63.92-5.16a8 8 0 0 0 6.72-4.94l24.62-59.61c.08-.17.11-.25.35-.25s.27.08.35.25L153 91.86a8 8 0 0 0 6.75 4.92l63.92 5.16c.15 0 .24 0 .33.29s0 .4-.16.5Z\"/></svg>',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yB8JF.framer-1m855n5, .framer-yB8JF .framer-1m855n5 { display: block; }\",\".framer-yB8JF.framer-1ci6spi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yB8JF .framer-1urr2u7, .framer-yB8JF .framer-u3jhr9, .framer-yB8JF .framer-1y8gm49, .framer-yB8JF .framer-19mhfjk, .framer-yB8JF .framer-6ovoo3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yB8JF.framer-1ci6spi { gap: 0px; } .framer-yB8JF.framer-1ci6spi > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-yB8JF.framer-1ci6spi > :first-child { margin-left: 0px; } .framer-yB8JF.framer-1ci6spi > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 88\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"aVicsYDZc\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRh55bi4ZV=withCSS(Component,css,\"framer-yB8JF\");export default FramerRh55bi4ZV;FramerRh55bi4ZV.displayName=\"5 Star\";FramerRh55bi4ZV.defaultProps={height:16,width:88};addPropertyControls(FramerRh55bi4ZV,{aVicsYDZc:{defaultValue:\"rgb(255, 200, 0)\",title:\"Background\",type:ControlType.Color}});addFonts(FramerRh55bi4ZV,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRh55bi4ZV\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"16\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"aVicsYDZc\\\":\\\"background\\\"}\",\"framerIntrinsicWidth\":\"88\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rh55bi4ZV.map"],"mappings":"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"}