{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/doW405kUuj7cGVnbx5y8/OcEpLc55ejTppM3tP67k/YWfgOX1Yb.js", "ssg:https://framerusercontent.com/modules/fB0sKhMpkCt5ajRfjlTP/8IkKedtymjIaCNtYYVpI/EMvNgLgK4.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"O37QJ6sGh\",\"q9Vj7owjY\"];const serializationHash=\"framer-T4ArY\";const variantClassNames={O37QJ6sGh:\"framer-v-18mmsyx\",q9Vj7owjY:\"framer-v-1iue9rs\"};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={damping:60,delay:0,mass:1,stiffness:500,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(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"q9Vj7owjY\",Ticker:\"O37QJ6sGh\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"O37QJ6sGh\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"O37QJ6sGh\",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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18mmsyx\",className,classNames),\"data-framer-name\":\"Ticker\",layoutDependency:layoutDependency,layoutId:\"O37QJ6sGh\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({q9Vj7owjY:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wivh97-container\",layoutDependency:layoutDependency,layoutId:\"LFECwQbkS-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:.5,id:\"LFECwQbkS\",layoutId:\"LFECwQbkS\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zy4u1t\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"tKZu15MzN\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"inset 0px 1px 0px 2px rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/6RlMdF5U8hcUrWFilzThzWIk.png\"},className:\"framer-1nf0bld\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"A7GAHIQWd\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6eqnhy\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"BuidaggeK\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(171, 171, 171, 0) 100%)\",opacity:.7}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9v5awe\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"nv3naWflD\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"inset 0px 1px 0px 2px rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:1081,pixelWidth:1080,sizes:\"48px\",src:\"https://framerusercontent.com/images/u45xi1wC6bteurWKw5ulFRgkLU.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/u45xi1wC6bteurWKw5ulFRgkLU.webp?scale-down-to=1024 1023w,https://framerusercontent.com/images/u45xi1wC6bteurWKw5ulFRgkLU.webp 1080w\"},className:\"framer-i4cwzo\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FCnwB4C1l\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14kdr2p\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"voxkOpAO0\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(171, 171, 171, 0) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ynhdei\",\"data-framer-name\":\"loom\",layoutDependency:layoutDependency,layoutId:\"cNoaNpwE8\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"inset 0px 1px 0px 2px rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/q8FwRey29iSM87nqoUK9BF3AHNQ.jpeg\"},className:\"framer-jgfplr\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"AamWYHXQG\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-27cthd\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"czLxtp1cV\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(171, 171, 171, 0) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l32px8\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"u8wsZ_qoi\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"inset 0px 1px 0px 2px rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:1440,pixelWidth:2560,sizes:\"48px\",src:\"https://framerusercontent.com/images/J6QnRnSxesy4adwLst2mHjWi3Jk.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/J6QnRnSxesy4adwLst2mHjWi3Jk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/J6QnRnSxesy4adwLst2mHjWi3Jk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/J6QnRnSxesy4adwLst2mHjWi3Jk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/J6QnRnSxesy4adwLst2mHjWi3Jk.jpg 2560w\"},className:\"framer-ebyf86\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Ga31nyUJo\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jzxyv1\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"MWdYkNNK6\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(171, 171, 171, 0) 100%)\",opacity:.4}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ih08b8\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"eVoCgWIbP\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"inset 0px 1px 0px 2px rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/06MkJKwSkPABcSSDC0e0x1rtqj8.jpg\"},className:\"framer-7vim0n\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JL1sT6G8O\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zk9hpp\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"SS_uTgr7e\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(171, 171, 171, 0) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ejswww\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"RwH92P174\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:440,pixelWidth:520,sizes:\"48px\",src:\"https://framerusercontent.com/images/KRAMI0VGCmrFfG4DLzRvA6OoKo.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KRAMI0VGCmrFfG4DLzRvA6OoKo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/KRAMI0VGCmrFfG4DLzRvA6OoKo.webp 520w\"},className:\"framer-8833ma\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"laZXbZhoz\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s5cdz8\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"lIHV8fq9F\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(171, 171, 171, 0) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-msu2aj\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"YIueq_Dqt\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"inset 0px 1px 0px 2px rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/8FolXqCrj2umzFKs9C4bj3XpEU.jpg\"},className:\"framer-zf1ngt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"h3aGfLTJj\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q881py\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"g1Ufml8Of\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(171, 171, 171, 0) 100%)\",opacity:.53}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ygorn\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"TBWT21Amy\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/yjWe5iF26PX2SEFckPqH8Iuxv6Q.webp\"},className:\"framer-nastzn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"d6Itmlddh\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vj09f9\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"JvE0UTpim\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(171, 171, 171, 0) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hmleit\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"yYyKdnC26\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"inset 0px 1px 0px 2px rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/UYWWWFhlPe33g17TdpQPnBLd8.png\"},className:\"framer-n04nie\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SklzuVlpk\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9khyxe\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"p7_7_zLyK\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(171, 171, 171, 0) 100%)\",opacity:.53}})]})],speed:15,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({q9Vj7owjY:{direction:\"right\",speed:10}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-T4ArY.framer-1bdscvy, .framer-T4ArY .framer-1bdscvy { display: block; }\",\".framer-T4ArY.framer-18mmsyx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 56px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 385px; }\",\".framer-T4ArY .framer-1wivh97-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-T4ArY .framer-zy4u1t, .framer-T4ArY .framer-9v5awe, .framer-T4ArY .framer-1ynhdei, .framer-T4ArY .framer-1l32px8, .framer-T4ArY .framer-1ih08b8, .framer-T4ArY .framer-ejswww, .framer-T4ArY .framer-msu2aj, .framer-T4ArY .framer-14ygorn, .framer-T4ArY .framer-hmleit { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-T4ArY .framer-1nf0bld { flex: none; height: 101%; overflow: visible; position: relative; width: 101%; }\",\".framer-T4ArY .framer-6eqnhy, .framer-T4ArY .framer-14kdr2p, .framer-T4ArY .framer-27cthd, .framer-T4ArY .framer-1jzxyv1, .framer-T4ArY .framer-zk9hpp, .framer-T4ArY .framer-1s5cdz8, .framer-T4ArY .framer-q881py, .framer-T4ArY .framer-1vj09f9, .framer-T4ArY .framer-9khyxe { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-T4ArY .framer-i4cwzo, .framer-T4ArY .framer-jgfplr, .framer-T4ArY .framer-ebyf86, .framer-T4ArY .framer-7vim0n, .framer-T4ArY .framer-8833ma, .framer-T4ArY .framer-zf1ngt, .framer-T4ArY .framer-n04nie { flex: none; height: 100%; overflow: visible; position: relative; width: 100%; }\",\".framer-T4ArY .framer-nastzn { flex: none; height: 107%; overflow: visible; position: relative; width: 101%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T4ArY.framer-18mmsyx, .framer-T4ArY .framer-zy4u1t, .framer-T4ArY .framer-9v5awe, .framer-T4ArY .framer-1ynhdei, .framer-T4ArY .framer-1l32px8, .framer-T4ArY .framer-1ih08b8, .framer-T4ArY .framer-ejswww, .framer-T4ArY .framer-msu2aj, .framer-T4ArY .framer-14ygorn, .framer-T4ArY .framer-hmleit { gap: 0px; } .framer-T4ArY.framer-18mmsyx > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-T4ArY.framer-18mmsyx > :first-child, .framer-T4ArY .framer-zy4u1t > :first-child, .framer-T4ArY .framer-9v5awe > :first-child, .framer-T4ArY .framer-1ynhdei > :first-child, .framer-T4ArY .framer-1l32px8 > :first-child, .framer-T4ArY .framer-1ih08b8 > :first-child, .framer-T4ArY .framer-ejswww > :first-child, .framer-T4ArY .framer-msu2aj > :first-child, .framer-T4ArY .framer-14ygorn > :first-child, .framer-T4ArY .framer-hmleit > :first-child { margin-left: 0px; } .framer-T4ArY.framer-18mmsyx > :last-child, .framer-T4ArY .framer-zy4u1t > :last-child, .framer-T4ArY .framer-9v5awe > :last-child, .framer-T4ArY .framer-1ynhdei > :last-child, .framer-T4ArY .framer-1l32px8 > :last-child, .framer-T4ArY .framer-1ih08b8 > :last-child, .framer-T4ArY .framer-ejswww > :last-child, .framer-T4ArY .framer-msu2aj > :last-child, .framer-T4ArY .framer-14ygorn > :last-child, .framer-T4ArY .framer-hmleit > :last-child { margin-right: 0px; } .framer-T4ArY .framer-zy4u1t > *, .framer-T4ArY .framer-9v5awe > *, .framer-T4ArY .framer-1ynhdei > *, .framer-T4ArY .framer-1l32px8 > *, .framer-T4ArY .framer-1ih08b8 > *, .framer-T4ArY .framer-ejswww > *, .framer-T4ArY .framer-msu2aj > *, .framer-T4ArY .framer-14ygorn > *, .framer-T4ArY .framer-hmleit > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 385\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"q9Vj7owjY\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYWfgOX1Yb=withCSS(Component,css,\"framer-T4ArY\");export default FramerYWfgOX1Yb;FramerYWfgOX1Yb.displayName=\"Assets/Integrations-ticker\";FramerYWfgOX1Yb.defaultProps={height:56,width:385};addPropertyControls(FramerYWfgOX1Yb,{variant:{options:[\"O37QJ6sGh\",\"q9Vj7owjY\"],optionTitles:[\"Ticker\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerYWfgOX1Yb,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYWfgOX1Yb\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q9Vj7owjY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"385\",\"framerIntrinsicHeight\":\"56\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YWfgOX1Yb.map", "// Generated by Framer (04e0834)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={aeIP5WAI6:{hover:true},CfEXaWNpQ:{hover:true},CZ62z04yv:{hover:true},liJfG5swp:{hover:true},LWQOvApBZ:{hover:true},QCgBltQXd:{hover:true},WNTeSUlgA:{hover:true}};const cycleOrder=[\"liJfG5swp\",\"aeIP5WAI6\",\"CZ62z04yv\",\"LWQOvApBZ\",\"QCgBltQXd\",\"CfEXaWNpQ\",\"WNTeSUlgA\"];const serializationHash=\"framer-oWze5\";const variantClassNames={aeIP5WAI6:\"framer-v-1deflqx\",CfEXaWNpQ:\"framer-v-bn7io4\",CZ62z04yv:\"framer-v-1vdgvvl\",liJfG5swp:\"framer-v-1lnvmvr\",LWQOvApBZ:\"framer-v-6uexw6\",QCgBltQXd:\"framer-v-1gbw217\",WNTeSUlgA:\"framer-v-15k97a2\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const negate=value=>{return!value;};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(React.Fragment);const humanReadableVariantMap={Dribbble:\"LWQOvApBZ\",Instagram:\"aeIP5WAI6\",LinkedIn:\"WNTeSUlgA\",Pinterest:\"QCgBltQXd\",TikTok:\"CfEXaWNpQ\",Twitter:\"liJfG5swp\",YouTube:\"CZ62z04yv\"};const getProps=({adaptive4,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,IlFTNJNRI:adaptive4!==null&&adaptive4!==void 0?adaptive4:props.IlFTNJNRI,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"liJfG5swp\"};};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,IlFTNJNRI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"liJfG5swp\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"aeIP5WAI6-hover\",\"CZ62z04yv-hover\",\"LWQOvApBZ-hover\",\"QCgBltQXd-hover\",\"CfEXaWNpQ-hover\",\"WNTeSUlgA-hover\"].includes(gestureVariant))return false;if([\"aeIP5WAI6\",\"CZ62z04yv\",\"LWQOvApBZ\",\"QCgBltQXd\",\"CfEXaWNpQ\",\"WNTeSUlgA\"].includes(baseVariant))return false;return true;};const visible=negate(IlFTNJNRI);const isDisplayed1=value=>{if(gestureVariant===\"aeIP5WAI6-hover\")return value;if(baseVariant===\"aeIP5WAI6\")return value;return false;};const isDisplayed2=()=>{if(gestureVariant===\"aeIP5WAI6-hover\")return true;if(baseVariant===\"aeIP5WAI6\")return true;return false;};const isDisplayed3=value=>{if(gestureVariant===\"QCgBltQXd-hover\")return value;if(baseVariant===\"QCgBltQXd\")return value;return false;};const isDisplayed4=()=>{if(gestureVariant===\"QCgBltQXd-hover\")return true;if(baseVariant===\"QCgBltQXd\")return true;return false;};const isDisplayed5=()=>{if([\"CfEXaWNpQ-hover\",\"WNTeSUlgA-hover\"].includes(gestureVariant))return true;if([\"CfEXaWNpQ\",\"WNTeSUlgA\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if(gestureVariant===\"WNTeSUlgA-hover\")return false;if(baseVariant===\"WNTeSUlgA\")return false;return true;};const isDisplayed7=()=>{if(gestureVariant===\"CfEXaWNpQ-hover\")return false;if(baseVariant===\"CfEXaWNpQ\")return false;return true;};const isDisplayed8=value=>{if(gestureVariant===\"LWQOvApBZ-hover\")return value;if(baseVariant===\"LWQOvApBZ\")return value;return false;};const isDisplayed9=()=>{if(gestureVariant===\"LWQOvApBZ-hover\")return true;if(baseVariant===\"LWQOvApBZ\")return true;return false;};const isDisplayed10=value=>{if(gestureVariant===\"CZ62z04yv-hover\")return value;if(baseVariant===\"CZ62z04yv\")return value;return false;};const isDisplayed11=()=>{if(gestureVariant===\"CZ62z04yv-hover\")return true;if(baseVariant===\"CZ62z04yv\")return true;return false;};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-1lnvmvr\",className,classNames),\"data-framer-name\":\"Twitter\",layoutDependency:layoutDependency,layoutId:\"liJfG5swp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.7,...style},variants:{\"aeIP5WAI6-hover\":{opacity:1},\"CfEXaWNpQ-hover\":{opacity:1},\"CZ62z04yv-hover\":{opacity:1},\"liJfG5swp-hover\":{opacity:1},\"LWQOvApBZ-hover\":{opacity:1},\"QCgBltQXd-hover\":{opacity:1},\"WNTeSUlgA-hover\":{opacity:1}},...addPropertyOverrides({\"aeIP5WAI6-hover\":{\"data-framer-name\":undefined},\"CfEXaWNpQ-hover\":{\"data-framer-name\":undefined},\"CZ62z04yv-hover\":{\"data-framer-name\":undefined},\"liJfG5swp-hover\":{\"data-framer-name\":undefined},\"LWQOvApBZ-hover\":{\"data-framer-name\":undefined},\"QCgBltQXd-hover\":{\"data-framer-name\":undefined},\"WNTeSUlgA-hover\":{\"data-framer-name\":undefined},aeIP5WAI6:{\"data-framer-name\":\"Instagram\"},CfEXaWNpQ:{\"data-framer-name\":\"TikTok\"},CZ62z04yv:{\"data-framer-name\":\"YouTube\"},LWQOvApBZ:{\"data-framer-name\":\"Dribbble\"},QCgBltQXd:{\"data-framer-name\":\"Pinterest\"},WNTeSUlgA:{\"data-framer-name\":\"LinkedIn\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://x.com/fabrice_mayrand\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9i408r framer-ztxfxz\",\"data-framer-name\":\"X\",layoutDependency:layoutDependency,layoutId:\"lPO6Cowjv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2wez6a\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RmS5A5nuK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 16.641 5 L 19.095 5 L 13.735 10.93 L 20.041 19 L 15.103 19 L 11.236 14.106 L 6.811 19 L 4.356 19 L 10.09 12.657 L 4.041 5 L 9.103 5 L 12.599 9.474 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12445086541,withExternalLayout:true})})}),isDisplayed1(visible)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ki7w3\",\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"KNcr4nX6t\",children:isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/framer/\",openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-wem22h framer-ztxfxz\",\"data-framer-name\":\"Instagram\",description:\"Link to Instagram feed\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Up39ggoXy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 4 8.667 C 4 6.089 6.089 4 8.667 4 L 15.333 4 C 17.911 4 20 6.089 20 8.667 L 20 15.333 C 20 17.911 17.911 20 15.333 20 L 8.667 20 C 6.089 20 4 17.911 4 15.333 Z M 15.333 7.333 C 15.322 7.817 15.574 8.268 15.991 8.513 C 16.408 8.758 16.924 8.758 17.341 8.513 C 17.758 8.269 18.01 7.817 17.999 7.334 C 17.983 6.609 17.391 6.03 16.667 6.03 C 15.942 6.03 15.35 6.609 15.333 7.333 Z M 8.667 12 C 8.667 13.841 10.16 15.334 12.001 15.333 C 13.842 15.333 15.334 13.84 15.334 11.999 C 15.334 10.158 13.841 8.666 12 8.666 C 10.159 8.666 8.666 10.159 8.667 12 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12632943706,title:\"Instagram Logo\",withExternalLayout:true,...addPropertyOverrides({\"aeIP5WAI6-hover\":{svgContentId:9373468032},aeIP5WAI6:{svgContentId:11173115295}},baseVariant,gestureVariant)})})}),isDisplayed3(visible)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-9cikej\",\"data-framer-name\":\"Pinterest\",layoutDependency:layoutDependency,layoutId:\"hlx_FLUWu\",children:isDisplayed4()&&/*#__PURE__*/_jsx(Link,{href:\"pinterest.com/framer_app/\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-o3q5ig framer-ztxfxz\",\"data-framer-name\":\"Pinterest\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VplB2CFuY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12.001 4 C 7.582 4 4 7.582 4 11.999 C 4 15.276 5.97 18.09 8.789 19.327 C 8.765 18.768 8.784 18.098 8.927 17.491 C 9.082 16.841 9.957 13.131 9.957 13.131 C 9.957 13.131 9.702 12.62 9.702 11.865 C 9.702 10.679 10.389 9.794 11.244 9.794 C 11.973 9.794 12.323 10.341 12.323 10.995 C 12.323 11.726 11.857 12.821 11.618 13.834 C 11.417 14.683 12.043 15.375 12.879 15.375 C 14.396 15.375 15.417 13.428 15.417 11.122 C 15.417 9.369 14.236 8.056 12.088 8.056 C 9.661 8.056 8.15 9.866 8.15 11.887 C 8.15 12.584 8.354 13.076 8.677 13.456 C 8.824 13.631 8.845 13.702 8.791 13.902 C 8.753 14.049 8.665 14.404 8.628 14.544 C 8.575 14.747 8.411 14.819 8.228 14.745 C 7.11 14.288 6.59 13.065 6.59 11.688 C 6.59 9.416 8.507 6.691 12.307 6.691 C 15.362 6.691 17.373 8.901 17.373 11.273 C 17.373 14.412 15.627 16.757 13.055 16.757 C 12.191 16.757 11.379 16.289 11.101 15.759 C 11.101 15.759 10.636 17.603 10.538 17.958 C 10.368 18.574 10.036 19.192 9.733 19.672 C 10.469 19.89 11.233 20 12.001 20 C 16.419 20 20 16.418 20 11.999 C 20 7.582 16.419 4 12.001 4 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10745957747,withExternalLayout:true,...addPropertyOverrides({\"QCgBltQXd-hover\":{svgContentId:11792464511},QCgBltQXd:{svgContentId:11183592408}},baseVariant,gestureVariant)})})}),isDisplayed5()&&/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({CfEXaWNpQ:{href:\"https://www.tiktok.com/@framerapp\"},WNTeSUlgA:{href:\"https://www.linkedin.com/company/10228950/\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-hkt2ee framer-ztxfxz\",\"data-framer-name\":\"LinkedIn\",layoutDependency:layoutDependency,layoutId:\"XrlKrmyiM\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1dmkcpm\",\"data-framer-name\":\"TikTok\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TC1AwP9Su\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17.631 7.136 C 17.514 7.077 17.401 7.012 17.29 6.941 C 16.97 6.733 16.676 6.488 16.415 6.211 C 15.763 5.478 15.519 4.734 15.429 4.213 L 15.433 4.213 C 15.358 3.78 15.389 3.501 15.394 3.501 L 12.421 3.501 L 12.421 14.79 C 12.421 14.942 12.421 15.092 12.415 15.24 C 12.415 15.258 12.413 15.275 12.412 15.295 C 12.412 15.303 12.412 15.311 12.41 15.32 L 12.41 15.326 C 12.346 16.149 11.87 16.886 11.14 17.294 C 10.765 17.503 10.342 17.613 9.91 17.613 C 8.526 17.613 7.403 16.503 7.403 15.134 C 7.403 13.764 8.526 12.655 9.91 12.655 C 10.173 12.654 10.433 12.695 10.682 12.775 L 10.686 9.802 C 9.156 9.608 7.614 10.051 6.432 11.024 C 5.919 11.462 5.489 11.983 5.159 12.566 C 5.033 12.779 4.56 13.632 4.503 15.018 C 4.467 15.805 4.707 16.62 4.822 16.956 L 4.822 16.964 C 4.894 17.162 5.173 17.839 5.629 18.409 C 5.996 18.867 6.43 19.269 6.916 19.602 L 6.916 19.595 L 6.923 19.602 C 8.362 20.563 9.958 20.5 9.958 20.5 C 10.234 20.489 11.159 20.5 12.21 20.011 C 13.375 19.468 14.038 18.661 14.038 18.661 C 14.462 18.178 14.799 17.628 15.035 17.034 C 15.304 16.34 15.394 15.507 15.394 15.174 L 15.394 9.184 C 15.43 9.206 15.91 9.518 15.91 9.518 C 15.91 9.518 16.602 9.953 17.681 10.237 C 18.456 10.439 19.499 10.481 19.499 10.481 L 19.499 7.583 C 19.133 7.622 18.391 7.508 17.631 7.136 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10224710856,withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-kbcaip\",\"data-framer-name\":\"LinkedIn\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nAJnyKTZQ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 4 7 C 4 5.343 5.343 4 7 4 L 17 4 C 18.657 4 20 5.343 20 7 L 20 17 C 20 18.657 18.657 20 17 20 L 7 20 C 5.343 20 4 18.657 4 17 Z M 8.85 17.393 L 8.85 10.169 L 6.434 10.169 L 6.434 17.393 Z M 7.642 9.182 C 8.484 9.182 9.009 8.628 9.009 7.934 C 8.993 7.225 8.484 6.686 7.658 6.686 C 6.831 6.686 6.291 7.225 6.291 7.934 C 6.291 8.628 6.815 9.182 7.626 9.182 Z M 10.187 17.394 C 10.187 17.394 10.187 17.394 10.187 17.393 L 10.187 17.393 Z M 12.604 17.393 L 12.604 13.359 C 12.604 13.143 12.62 12.928 12.683 12.773 C 12.858 12.342 13.256 11.895 13.923 11.895 C 14.798 11.895 15.148 12.557 15.148 13.529 L 15.148 17.393 L 17.564 17.393 L 17.564 13.251 C 17.564 11.032 16.372 9.999 14.782 9.999 C 13.5 9.999 12.925 10.699 12.604 11.192 L 12.604 10.169 L 10.187 10.169 C 10.219 10.844 10.188 17.351 10.187 17.393 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11975108340,withExternalLayout:true})]})}),isDisplayed8(visible)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-gqdq2j\",\"data-framer-name\":\"Dribbble\",layoutDependency:layoutDependency,layoutId:\"iVSTmex8k\",children:isDisplayed9()&&/*#__PURE__*/_jsx(Link,{href:\"https://dribbble.com/framer\",openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1nhe2jg framer-ztxfxz\",\"data-framer-name\":\"Dribbble\",description:\"Link to Dribbble shots\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vkIQZnfGN\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 11.526 19.524 C 7.114 19.524 3.526 15.939 3.526 11.527 C 3.526 7.11 7.114 3.524 11.526 3.524 C 15.939 3.524 19.526 7.11 19.526 11.521 C 19.526 15.933 15.939 19.524 11.526 19.524 Z M 18.27 12.616 C 18.039 12.541 16.158 11.984 14.014 12.322 C 14.908 14.775 15.27 16.777 15.339 17.19 C 16.876 16.158 17.97 14.518 18.27 12.616 Z M 14.195 17.822 C 14.095 17.222 13.695 15.132 12.739 12.641 C 12.726 12.648 12.708 12.654 12.695 12.654 C 8.839 13.999 7.458 16.671 7.333 16.921 C 8.489 17.822 9.945 18.36 11.526 18.36 C 12.47 18.367 13.376 18.173 14.195 17.822 Z M 6.451 16.102 C 6.608 15.839 8.483 12.735 12.008 11.59 C 12.095 11.559 12.189 11.534 12.276 11.509 C 12.108 11.121 11.92 10.733 11.72 10.351 C 8.308 11.371 4.995 11.327 4.695 11.321 C 4.695 11.39 4.689 11.459 4.689 11.527 C 4.695 13.286 5.358 14.888 6.451 16.102 Z M 4.839 10.132 C 5.145 10.138 7.958 10.151 11.158 9.3 C 10.026 7.285 8.801 5.596 8.626 5.351 C 6.708 6.253 5.283 8.017 4.839 10.132 Z M 9.926 4.888 C 10.114 5.139 11.358 6.828 12.476 8.887 C 14.908 7.973 15.933 6.597 16.058 6.421 C 14.851 5.351 13.264 4.701 11.526 4.701 C 10.976 4.701 10.439 4.77 9.926 4.888 Z M 16.814 7.21 C 16.67 7.404 15.526 8.874 13.001 9.907 C 13.158 10.232 13.314 10.564 13.458 10.895 C 13.508 11.014 13.558 11.133 13.608 11.246 C 15.883 10.958 18.139 11.421 18.364 11.465 C 18.345 9.857 17.77 8.374 16.814 7.21 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12524012169,title:\"Dribbble Logo\",withExternalLayout:true,...addPropertyOverrides({\"LWQOvApBZ-hover\":{svgContentId:12403485076},LWQOvApBZ:{svgContentId:10763357344}},baseVariant,gestureVariant)})})}),isDisplayed10(visible)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wmgovv\",\"data-framer-name\":\"YouTube\",layoutDependency:layoutDependency,layoutId:\"BeXdmnjuw\",children:isDisplayed11()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCW5gUZ7lKGrAbLOkHv2xfbw\",openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1dkaikf framer-ztxfxz\",\"data-framer-name\":\"Youtube\",description:\"Link to YouTube channel\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"YVbnaQHfG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 23 12 C 23 12 23 15.487 22.54 17.158 C 22.285 18.082 21.544 18.804 20.595 19.052 C 18.88 19.5 12 19.5 12 19.5 C 12 19.5 5.12 19.5 3.405 19.052 C 2.456 18.803 1.715 18.082 1.46 17.158 C 1 15.487 1 12 1 12 C 1 12 1 8.513 1.46 6.842 C 1.715 5.918 2.456 5.197 3.405 4.948 C 5.12 4.5 12 4.5 12 4.5 C 12 4.5 18.88 4.5 20.595 4.948 C 21.544 5.197 22.285 5.918 22.54 6.842 C 22.998 8.513 23 12 23 12 Z M 9.798 14.359 C 9.798 14.742 10.21 14.983 10.543 14.795 L 14.738 12.436 C 15.078 12.245 15.078 11.756 14.738 11.564 L 10.543 9.205 C 10.21 9.018 9.798 9.259 9.798 9.641 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12210931188,title:\"YouTube\",withExternalLayout:true,...addPropertyOverrides({\"CZ62z04yv-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 23 12 C 23 12 23 15.487 22.54 17.158 C 22.285 18.082 21.544 18.804 20.595 19.052 C 18.88 19.5 12 19.5 12 19.5 C 12 19.5 5.12 19.5 3.405 19.052 C 2.456 18.803 1.715 18.082 1.46 17.158 C 1 15.487 1 12 1 12 C 1 12 1 8.513 1.46 6.842 C 1.715 5.918 2.456 5.197 3.405 4.948 C 5.12 4.5 12 4.5 12 4.5 C 12 4.5 18.88 4.5 20.595 4.948 C 21.544 5.197 22.285 5.918 22.54 6.842 C 22.998 8.513 23 12 23 12 Z M 9.798 15.214 L 15.514 12 L 9.798 8.787 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9279265415},CZ62z04yv:{svgContentId:9411404310}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oWze5.framer-ztxfxz, .framer-oWze5 .framer-ztxfxz { display: block; }\",\".framer-oWze5.framer-1lnvmvr { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 24px; }\",\".framer-oWze5 .framer-9i408r { flex: none; height: 24px; overflow: visible; position: relative; text-decoration: none; width: 24px; }\",\".framer-oWze5 .framer-2wez6a, .framer-oWze5 .framer-1dmkcpm, .framer-oWze5 .framer-kbcaip { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-oWze5 .framer-ki7w3, .framer-oWze5 .framer-9cikej, .framer-oWze5 .framer-gqdq2j, .framer-oWze5 .framer-wmgovv { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-oWze5 .framer-wem22h, .framer-oWze5 .framer-o3q5ig, .framer-oWze5 .framer-1nhe2jg, .framer-oWze5 .framer-1dkaikf { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; text-decoration: none; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-oWze5 .framer-hkt2ee { flex: none; height: 100%; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oWze5.framer-1lnvmvr { gap: 0px; } .framer-oWze5.framer-1lnvmvr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oWze5.framer-1lnvmvr > :first-child { margin-left: 0px; } .framer-oWze5.framer-1lnvmvr > :last-child { margin-right: 0px; } }\",\".framer-oWze5.framer-v-bn7io4 .framer-hkt2ee, .framer-oWze5.framer-v-15k97a2 .framer-hkt2ee { text-decoration: none; }\",\".framer-oWze5.framer-v-15k97a2 .framer-kbcaip { left: calc(50.00000000000002% - 24px / 2); top: calc(50.00000000000002% - 24px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"aeIP5WAI6\":{\"layout\":[\"fixed\",\"fixed\"]},\"CZ62z04yv\":{\"layout\":[\"fixed\",\"fixed\"]},\"LWQOvApBZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"QCgBltQXd\":{\"layout\":[\"fixed\",\"fixed\"]},\"CfEXaWNpQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"WNTeSUlgA\":{\"layout\":[\"fixed\",\"fixed\"]},\"dlaNzHzhc\":{\"layout\":[\"fixed\",\"fixed\"]},\"E_SoHermy\":{\"layout\":[\"fixed\",\"fixed\"]},\"kiXvAxLFA\":{\"layout\":[\"fixed\",\"fixed\"]},\"sWRrs5auf\":{\"layout\":[\"fixed\",\"fixed\"]},\"jjQZU9Wz0\":{\"layout\":[\"fixed\",\"fixed\"]},\"St5ZZnWGi\":{\"layout\":[\"fixed\",\"fixed\"]},\"ku5Zl6i8N\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"IlFTNJNRI\":\"adaptive4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEMvNgLgK4=withCSS(Component,css,\"framer-oWze5\");export default FramerEMvNgLgK4;FramerEMvNgLgK4.displayName=\"Footer / Social Icons\";FramerEMvNgLgK4.defaultProps={height:24,width:24};addPropertyControls(FramerEMvNgLgK4,{variant:{options:[\"liJfG5swp\",\"aeIP5WAI6\",\"CZ62z04yv\",\"LWQOvApBZ\",\"QCgBltQXd\",\"CfEXaWNpQ\",\"WNTeSUlgA\"],optionTitles:[\"Twitter\",\"Instagram\",\"YouTube\",\"Dribbble\",\"Pinterest\",\"TikTok\",\"LinkedIn\"],title:\"Variant\",type:ControlType.Enum},IlFTNJNRI:{defaultValue:false,title:\"Adaptive 4\",type:ControlType.Boolean}});addFonts(FramerEMvNgLgK4,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEMvNgLgK4\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aeIP5WAI6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CZ62z04yv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LWQOvApBZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QCgBltQXd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CfEXaWNpQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WNTeSUlgA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dlaNzHzhc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"E_SoHermy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kiXvAxLFA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sWRrs5auf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jjQZU9Wz0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"St5ZZnWGi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ku5Zl6i8N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"24\",\"framerVariables\":\"{\\\"IlFTNJNRI\\\":\\\"adaptive4\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EMvNgLgK4.map"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "Image2", "css", "FramerYWfgOX1Yb", "withCSS", "YWfgOX1Yb_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "negate", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "adaptive4", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "IlFTNJNRI", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "visible", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Link", "SVG", "css", "FramerEMvNgLgK4", "withCSS", "EMvNgLgK4_default", "addPropertyControls", "ControlType", "addFonts"]
}
