{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/bI7GkTB71nbcuq4BuFSn/v6QpAqmkOMfvEQFmkruT/yVnX_Fbb2.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 (295c121)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const enabledGestures={ak4aKoOpj:{hover:true},NPkCHyDrk:{hover:true}};const cycleOrder=[\"NPkCHyDrk\",\"ak4aKoOpj\"];const serializationHash=\"framer-zSAGw\";const variantClassNames={ak4aKoOpj:\"framer-v-1960o2g\",NPkCHyDrk:\"framer-v-1on392v\"};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={\"Dark Mode\":\"NPkCHyDrk\",\"Light Mode\":\"ak4aKoOpj\"};const getProps=({border,darkButton,darkIcon,height,id,lightButton,lightIcon,lightText,link,starIcon,tap,title,width,...props})=>{return{...props,AwLVtbPDc:lightText??props.AwLVtbPDc??\"var(--token-354b79d5-dff9-4cef-936c-f339b384d4ea, rgb(34, 157, 88))\",BSOUUvg2I:darkButton??props.BSOUUvg2I??\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",kc3TEh2D5:title??props.kc3TEh2D5??\"Get started\",LZvaOqyYU:tap??props.LZvaOqyYU,OZOAUcesg:darkIcon??props.OZOAUcesg??\"rgb(255, 255, 255)\",ptgqjHC4p:border??props.ptgqjHC4p??{borderColor:\"rgb(22, 89, 51)\",borderStyle:\"solid\",borderWidth:1},Q8bxkK_Tn:lightIcon??props.Q8bxkK_Tn??\"var(--token-354b79d5-dff9-4cef-936c-f339b384d4ea, rgb(34, 157, 88))\",QskPwRPDg:link??props.QskPwRPDg,variant:humanReadableVariantMap[props.variant]??props.variant??\"NPkCHyDrk\",vzCC4h5Mr:lightButton??props.vzCC4h5Mr??\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",ZT_RE8uZX:starIcon??props.ZT_RE8uZX??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>'};};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,kc3TEh2D5,ZT_RE8uZX,BSOUUvg2I,vzCC4h5Mr,AwLVtbPDc,OZOAUcesg,Q8bxkK_Tn,QskPwRPDg,LZvaOqyYU,ptgqjHC4p,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NPkCHyDrk\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1gysrt4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(LZvaOqyYU){const res=await LZvaOqyYU(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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:QskPwRPDg,nodeId:\"NPkCHyDrk\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1on392v\",className,classNames)} framer-17r1nbl`,\"data-framer-name\":\"Dark Mode\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NPkCHyDrk\",onTap:onTap1gysrt4,ref:ref??ref1,style:{...style},...addPropertyOverrides({\"ak4aKoOpj-hover\":{\"data-framer-name\":undefined},\"NPkCHyDrk-hover\":{\"data-framer-name\":undefined},ak4aKoOpj:{\"data-framer-name\":\"Light Mode\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dxzxze\",\"data-border\":true,\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"hBpUewMX7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:BSOUUvg2I,borderBottomLeftRadius:395,borderBottomRightRadius:395,borderTopLeftRadius:395,borderTopRightRadius:395,rotate:0},variants:{\"ak4aKoOpj-hover\":{\"--border-color\":\"var(--token-354b79d5-dff9-4cef-936c-f339b384d4ea, rgb(34, 157, 88))\",rotate:-4},\"NPkCHyDrk-hover\":{\"--border-color\":\"rgb(22, 89, 51)\",backgroundColor:\"var(--token-354b79d5-dff9-4cef-936c-f339b384d4ea, rgb(34, 157, 88))\",rotate:-4},ak4aKoOpj:{\"--border-color\":\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",backgroundColor:vzCC4h5Mr}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r170zz\",\"data-border\":true,\"data-framer-name\":\"Base\",layoutDependency:layoutDependency,layoutId:\"YgQXXWc0h\",style:{\"--border-bottom-width\":(ptgqjHC4p.borderBottomWidth??ptgqjHC4p.borderWidth)+\"px\",\"--border-color\":ptgqjHC4p.borderColor,\"--border-left-width\":(ptgqjHC4p.borderLeftWidth??ptgqjHC4p.borderWidth)+\"px\",\"--border-right-width\":(ptgqjHC4p.borderRightWidth??ptgqjHC4p.borderWidth)+\"px\",\"--border-style\":ptgqjHC4p.borderStyle,\"--border-top-width\":(ptgqjHC4p.borderTopWidth??ptgqjHC4p.borderWidth)+\"px\",backgroundColor:BSOUUvg2I,borderBottomLeftRadius:395,borderBottomRightRadius:395,borderTopLeftRadius:395,borderTopRightRadius:395,rotate:0},variants:{\"ak4aKoOpj-hover\":{rotate:-4},\"NPkCHyDrk-hover\":{rotate:-4},ak4aKoOpj:{backgroundColor:vzCC4h5Mr}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mezqlu\",\"data-framer-name\":\"Shine\",layoutDependency:layoutDependency,layoutId:\"NylSSAhlW\",style:{backgroundColor:\"var(--token-354b79d5-dff9-4cef-936c-f339b384d4ea, rgb(34, 157, 88))\",borderBottomLeftRadius:398,borderBottomRightRadius:398,borderTopLeftRadius:398,borderTopRightRadius:398,rotate:0},variants:{\"ak4aKoOpj-hover\":{rotate:-4},\"NPkCHyDrk-hover\":{rotate:-4},ak4aKoOpj:{backgroundColor:vzCC4h5Mr}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cj0tf\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"SVFou9kZJ\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:1,rotate:343},variants:{\"NPkCHyDrk-hover\":{opacity:1},ak4aKoOpj:{backgroundColor:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",opacity:.5}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18r9mr4\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"eL3_rUp5V\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:1,rotate:343},variants:{\"NPkCHyDrk-hover\":{opacity:1},ak4aKoOpj:{backgroundColor:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",opacity:.5}}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get started\"})}),className:\"framer-mkkwzr\",fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"o3fYOGpii\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-AwLVtbPDc-yVnX_Fbb2\":AwLVtbPDc,rotate:0},text:kc3TEh2D5,transformTemplate:transformTemplate1,variants:{\"ak4aKoOpj-hover\":{rotate:-4},\"NPkCHyDrk-hover\":{rotate:-4},ak4aKoOpj:{\"--extracted-r6o4lv\":\"var(--variable-reference-AwLVtbPDc-yVnX_Fbb2)\",\"--variable-reference-AwLVtbPDc-yVnX_Fbb2\":AwLVtbPDc}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"ak4aKoOpj-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AwLVtbPDc-yVnX_Fbb2))\"},children:\"Get started\"})})},\"NPkCHyDrk-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get started\"})})},ak4aKoOpj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AwLVtbPDc-yVnX_Fbb2))\"},children:\"Get started\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get started\"})}),className:\"framer-i0bdt5\",\"data-framer-name\":\"Helper\",fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"tBwmuWxjs\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:kc3TEh2D5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qf9qlu\",\"data-framer-name\":\"Stars\",layoutDependency:layoutDependency,layoutId:\"PLLVA0T1e\",style:{opacity:0,rotate:0},variants:{\"ak4aKoOpj-hover\":{opacity:1,rotate:-4},\"NPkCHyDrk-hover\":{opacity:1,rotate:-4}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rts3vs-container\",layoutDependency:layoutDependency,layoutId:\"eJ38C3CzG-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"eJ38C3CzG\",layoutId:\"eJ38C3CzG\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"NPkCHyDrk-hover\":{customColor:\"rgb(22, 89, 51)\"},ak4aKoOpj:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p8bg0a-container\",layoutDependency:layoutDependency,layoutId:\"lqfFkOr8X-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"lqfFkOr8X\",layoutId:\"lqfFkOr8X\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"NPkCHyDrk-hover\":{customColor:\"rgb(22, 89, 51)\"},ak4aKoOpj:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15lgy7o-container\",layoutDependency:layoutDependency,layoutId:\"sEpe3T_7z-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"sEpe3T_7z\",layoutId:\"sEpe3T_7z\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"NPkCHyDrk-hover\":{customColor:\"rgb(22, 89, 51)\"},ak4aKoOpj:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h5lfeu-container\",layoutDependency:layoutDependency,layoutId:\"rrxTUUuql-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"rrxTUUuql\",layoutId:\"rrxTUUuql\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"NPkCHyDrk-hover\":{customColor:\"rgb(22, 89, 51)\"},ak4aKoOpj:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-po7fpg-container\",layoutDependency:layoutDependency,layoutId:\"NRi1YnVB1-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"NRi1YnVB1\",layoutId:\"NRi1YnVB1\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"NPkCHyDrk-hover\":{customColor:\"rgb(22, 89, 51)\"},ak4aKoOpj:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1scqt2-container\",layoutDependency:layoutDependency,layoutId:\"owSE5zhvd-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"owSE5zhvd\",layoutId:\"owSE5zhvd\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"NPkCHyDrk-hover\":{customColor:\"rgb(22, 89, 51)\"},ak4aKoOpj:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zSAGw.framer-17r1nbl, .framer-zSAGw .framer-17r1nbl { display: block; }\",\".framer-zSAGw.framer-1on392v { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-zSAGw .framer-1dxzxze, .framer-zSAGw .framer-r170zz { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zSAGw .framer-1mezqlu { bottom: 1px; flex: none; left: 1px; overflow: hidden; position: absolute; right: 1px; top: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zSAGw .framer-1cj0tf { bottom: -11px; flex: none; left: -21px; overflow: hidden; position: absolute; top: -14px; width: 2px; }\",\".framer-zSAGw .framer-18r9mr4 { bottom: -11px; flex: none; left: -30px; overflow: hidden; position: absolute; top: -13px; width: 6px; }\",\".framer-zSAGw .framer-mkkwzr { -webkit-user-select: none; flex: none; height: auto; left: 50%; position: absolute; top: 50%; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-zSAGw .framer-i0bdt5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zSAGw .framer-1qf9qlu { flex: none; height: 47px; left: calc(50.00000000000002% - 62px / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 47px / 2); width: 62px; }\",\".framer-zSAGw .framer-rts3vs-container { flex: none; height: 16px; left: calc(74.1935483870968% - 16px / 2); position: absolute; top: calc(27.65957446808513% - 16px / 2); width: 16px; z-index: 1; }\",\".framer-zSAGw .framer-1p8bg0a-container { flex: none; height: 10px; left: calc(46.77419354838712% - 10px / 2); position: absolute; top: calc(19.14893617021279% - 10px / 2); width: 10px; z-index: 1; }\",\".framer-zSAGw .framer-15lgy7o-container { flex: none; height: 6px; left: calc(8.06451612903228% - 6px / 2); position: absolute; top: calc(29.787234042553212% - 6px / 2); width: 6px; z-index: 1; }\",\".framer-zSAGw .framer-h5lfeu-container { flex: none; height: 14px; left: calc(17.74193548387099% - 14px / 2); position: absolute; top: calc(68.08510638297875% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-zSAGw .framer-po7fpg-container { flex: none; height: 6px; left: calc(53.225806451612925% - 6px / 2); position: absolute; top: calc(80.85106382978725% - 6px / 2); width: 6px; z-index: 1; }\",\".framer-zSAGw .framer-1scqt2-container { flex: none; height: 24px; left: calc(85.48387096774196% - 24px / 2); position: absolute; top: calc(63.82978723404258% - 24px / 2); width: 24px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zSAGw.framer-1on392v { gap: 0px; } .framer-zSAGw.framer-1on392v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zSAGw.framer-1on392v > :first-child { margin-top: 0px; } .framer-zSAGw.framer-1on392v > :last-child { margin-bottom: 0px; } }\",\".framer-zSAGw.framer-v-1on392v.hover .framer-1dxzxze { bottom: -9px; left: -14px; right: -2px; top: 3px; }\",\".framer-zSAGw.framer-v-1on392v.hover .framer-r170zz { bottom: -3px; left: -8px; right: -8px; top: -3px; }\",\".framer-zSAGw.framer-v-1on392v.hover .framer-1mezqlu { bottom: -2px; left: -7px; right: -7px; top: -2px; }\",\".framer-zSAGw.framer-v-1on392v.hover .framer-1cj0tf { bottom: -11px; left: unset; right: -27px; top: -14px; }\",\".framer-zSAGw.framer-v-1on392v.hover .framer-18r9mr4 { bottom: -11px; left: unset; right: -23px; top: -13px; }\",\".framer-zSAGw.framer-v-1on392v.hover .framer-mkkwzr, .framer-zSAGw.framer-v-1960o2g.hover .framer-mkkwzr { top: 48%; }\",\".framer-zSAGw.framer-v-1on392v.hover .framer-1qf9qlu, .framer-zSAGw.framer-v-1960o2g.hover .framer-1qf9qlu { bottom: -44px; height: unset; left: -22px; right: -21px; top: -44px; width: unset; }\",\".framer-zSAGw.framer-v-1960o2g.hover .framer-1dxzxze { bottom: -9px; left: -14px; right: -4px; top: 2px; }\",\".framer-zSAGw.framer-v-1960o2g.hover .framer-r170zz { bottom: -3px; left: -9px; right: -9px; top: -3px; }\",\".framer-zSAGw.framer-v-1960o2g.hover .framer-1mezqlu { bottom: -2px; left: -8px; right: -8px; top: -2px; }\",\".framer-zSAGw.framer-v-1960o2g.hover .framer-1cj0tf { bottom: -11px; left: unset; right: -33px; top: -14px; }\",\".framer-zSAGw.framer-v-1960o2g.hover .framer-18r9mr4 { bottom: -11px; left: unset; right: -29px; top: -13px; }\",'.framer-zSAGw[data-border=\"true\"]::after, .framer-zSAGw [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 48\n * @framerIntrinsicWidth 136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"ak4aKoOpj\":{\"layout\":[\"auto\",\"fixed\"]},\"E314eXzbE\":{\"layout\":[\"auto\",\"fixed\"]},\"vjeVUO_Se\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"kc3TEh2D5\":\"title\",\"ZT_RE8uZX\":\"starIcon\",\"BSOUUvg2I\":\"darkButton\",\"vzCC4h5Mr\":\"lightButton\",\"AwLVtbPDc\":\"lightText\",\"OZOAUcesg\":\"darkIcon\",\"Q8bxkK_Tn\":\"lightIcon\",\"QskPwRPDg\":\"link\",\"LZvaOqyYU\":\"tap\",\"ptgqjHC4p\":\"border\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryVnX_Fbb2=withCSS(Component,css,\"framer-zSAGw\");export default FrameryVnX_Fbb2;FrameryVnX_Fbb2.displayName=\"3D-Button\";FrameryVnX_Fbb2.defaultProps={height:48,width:136};addPropertyControls(FrameryVnX_Fbb2,{variant:{options:[\"NPkCHyDrk\",\"ak4aKoOpj\"],optionTitles:[\"Dark Mode\",\"Light Mode\"],title:\"Variant\",type:ControlType.Enum},kc3TEh2D5:{defaultValue:\"Get started\",displayTextArea:false,title:\"Title\",type:ControlType.String},ZT_RE8uZX:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>',displayTextArea:false,title:\"Star Icon\",type:ControlType.String},BSOUUvg2I:{defaultValue:'var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {\"name\":\"1\"} */',title:\"Dark Button\",type:ControlType.Color},vzCC4h5Mr:{defaultValue:'var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {\"name\":\"12\"} */',title:\"Light Button\",type:ControlType.Color},AwLVtbPDc:{defaultValue:'var(--token-354b79d5-dff9-4cef-936c-f339b384d4ea, rgb(34, 157, 88)) /* {\"name\":\"Talky Ye\u015Fili\"} */',title:\"Light Text\",type:ControlType.Color},OZOAUcesg:{defaultValue:\"rgb(255, 255, 255)\",title:\"Dark Icon\",type:ControlType.Color},Q8bxkK_Tn:{defaultValue:'var(--token-354b79d5-dff9-4cef-936c-f339b384d4ea, rgb(34, 157, 88)) /* {\"name\":\"Talky Ye\u015Fili\"} */',title:\"Light Icon\",type:ControlType.Color},QskPwRPDg:{title:\"Link\",type:ControlType.Link},LZvaOqyYU:{title:\"Tap\",type:ControlType.EventHandler},ptgqjHC4p:{defaultValue:{borderColor:\"rgb(22, 89, 51)\",borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border}});addFonts(FrameryVnX_Fbb2,[{explicitInter:true,fonts:[{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"}]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryVnX_Fbb2\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"48\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ak4aKoOpj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"E314eXzbE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"vjeVUO_Se\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"136\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"kc3TEh2D5\\\":\\\"title\\\",\\\"ZT_RE8uZX\\\":\\\"starIcon\\\",\\\"BSOUUvg2I\\\":\\\"darkButton\\\",\\\"vzCC4h5Mr\\\":\\\"lightButton\\\",\\\"AwLVtbPDc\\\":\\\"lightText\\\",\\\"OZOAUcesg\\\":\\\"darkIcon\\\",\\\"Q8bxkK_Tn\\\":\\\"lightIcon\\\",\\\"QskPwRPDg\\\":\\\"link\\\",\\\"LZvaOqyYU\\\":\\\"tap\\\",\\\"ptgqjHC4p\\\":\\\"border\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yVnX_Fbb2.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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "border", "darkButton", "darkIcon", "height", "id", "lightButton", "lightIcon", "lightText", "link", "starIcon", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kc3TEh2D5", "ZT_RE8uZX", "BSOUUvg2I", "vzCC4h5Mr", "AwLVtbPDc", "OZOAUcesg", "Q8bxkK_Tn", "QskPwRPDg", "LZvaOqyYU", "ptgqjHC4p", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1gysrt4", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "css", "FrameryVnX_Fbb2", "withCSS", "yVnX_Fbb2_default", "addPropertyControls", "ControlType", "addFonts"]
}
