{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/uc7tkzjh9hkkKzI7QZH6/LKfg3EVDcO7tX4gYjebN/VB2Txf8le.js", "ssg:https://framerusercontent.com/modules/HUYsLr0zYfnkJoBFroth/M7Kf8Dt1I6lsJp34b8VW/WfeUaTcFW.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,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);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=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);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(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}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,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=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\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,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/6YdWVZhgezRAHPsDckZo/Ticker.js\";const TickerFonts=getFonts(Ticker);const TickerControls=getPropertyControls(Ticker);const serializationHash=\"framer-huO2Q\";const variantClassNames={D1XHR5rMK:\"framer-v-o4c1nk\"};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:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 humanReadableEnumMap={Bottom:\"bottom\",Left:\"left\",Right:\"right\",Top:\"top\"};const getProps=({direction,height,id,logo1,logo10,logo2,logo3,logo4,logo5,logo6,logo7,logo8,logo9,showLogo1,showLogo10,showLogo2,showLogo3,showLogo4,showLogo5,showLogo6,showLogo7,showLogo8,showLogo9,width,...props})=>{return{...props,AEqdDAOCf:logo6??props.AEqdDAOCf??{src:\"https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png\",srcSet:\"https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png?scale-down-to=512 512w,https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png 1078w\"},Ak3PMppST:logo9??props.Ak3PMppST??{src:\"https://framerusercontent.com/images/jVhOtd9Pewely28YsU8yFHWyc.png\",srcSet:\"https://framerusercontent.com/images/jVhOtd9Pewely28YsU8yFHWyc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jVhOtd9Pewely28YsU8yFHWyc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jVhOtd9Pewely28YsU8yFHWyc.png 1178w\"},bwBS4eWXr:showLogo8??props.bwBS4eWXr??true,cyXwxl3qK:logo7??props.cyXwxl3qK??{src:\"https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png\",srcSet:\"https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png?scale-down-to=512 512w,https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png 1092w\"},DiTUIp3if:showLogo4??props.DiTUIp3if??true,ezoTpYI6O:showLogo7??props.ezoTpYI6O??true,FoxrWsOor:showLogo2??props.FoxrWsOor??true,G9Yq8agl8:logo1??props.G9Yq8agl8??{src:\"https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png\",srcSet:\"https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png?scale-down-to=512 512w,https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png 1078w\"},H5QxDqECN:logo4??props.H5QxDqECN??{src:\"https://framerusercontent.com/images/jVhOtd9Pewely28YsU8yFHWyc.png\",srcSet:\"https://framerusercontent.com/images/jVhOtd9Pewely28YsU8yFHWyc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jVhOtd9Pewely28YsU8yFHWyc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jVhOtd9Pewely28YsU8yFHWyc.png 1178w\"},ll107L1Cy:logo8??props.ll107L1Cy??{src:\"https://framerusercontent.com/images/LOorVZN8bgtC7Jiz0QnoigSGXXE.png\",srcSet:\"https://framerusercontent.com/images/LOorVZN8bgtC7Jiz0QnoigSGXXE.png?scale-down-to=512 512w,https://framerusercontent.com/images/LOorVZN8bgtC7Jiz0QnoigSGXXE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LOorVZN8bgtC7Jiz0QnoigSGXXE.png 1174w\"},lMUpWNk2l:showLogo10??props.lMUpWNk2l??true,lt_vwTJoF:showLogo6??props.lt_vwTJoF??true,MggkWYymF:humanReadableEnumMap[direction]??direction??props.MggkWYymF??\"left\",OTMGm9aez:logo2??props.OTMGm9aez??{src:\"https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png\",srcSet:\"https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png?scale-down-to=512 512w,https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png 1092w\"},pJz_jH1Z3:logo10??props.pJz_jH1Z3??{src:\"https://framerusercontent.com/images/Ldz8Lo702oafR9DUzr1LYYRMIM.png\",srcSet:\"https://framerusercontent.com/images/Ldz8Lo702oafR9DUzr1LYYRMIM.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ldz8Lo702oafR9DUzr1LYYRMIM.png 1024w\"},qaPT5O2HH:showLogo1??props.qaPT5O2HH??true,V_GR2E_2K:showLogo9??props.V_GR2E_2K??true,x_acOdhvg:logo3??props.x_acOdhvg??{src:\"https://framerusercontent.com/images/LOorVZN8bgtC7Jiz0QnoigSGXXE.png\",srcSet:\"https://framerusercontent.com/images/LOorVZN8bgtC7Jiz0QnoigSGXXE.png?scale-down-to=512 512w,https://framerusercontent.com/images/LOorVZN8bgtC7Jiz0QnoigSGXXE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LOorVZN8bgtC7Jiz0QnoigSGXXE.png 1174w\"},XgVQuTsx1:logo5??props.XgVQuTsx1??{src:\"https://framerusercontent.com/images/Ldz8Lo702oafR9DUzr1LYYRMIM.png\",srcSet:\"https://framerusercontent.com/images/Ldz8Lo702oafR9DUzr1LYYRMIM.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ldz8Lo702oafR9DUzr1LYYRMIM.png 1024w\"},ZlTl6S829:showLogo3??props.ZlTl6S829??true,zQdiMoo7W:showLogo5??props.zQdiMoo7W??true};};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,MggkWYymF,qaPT5O2HH,G9Yq8agl8,FoxrWsOor,OTMGm9aez,ZlTl6S829,x_acOdhvg,DiTUIp3if,H5QxDqECN,zQdiMoo7W,XgVQuTsx1,lt_vwTJoF,AEqdDAOCf,ezoTpYI6O,cyXwxl3qK,bwBS4eWXr,ll107L1Cy,V_GR2E_2K,Ak3PMppST,lMUpWNk2l,pJz_jH1Z3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"D1XHR5rMK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-o4c1nk\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"D1XHR5rMK\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dmcif3-container\",layoutDependency:layoutDependency,layoutId:\"kUDE3vkMA-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:MggkWYymF,fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"kUDE3vkMA\",layoutId:\"kUDE3vkMA\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:true},slots:[qaPT5O2HH&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:109,intrinsicWidth:539,pixelHeight:218,pixelWidth:1078,sizes:\"200px\",...toResponsiveImage(G9Yq8agl8),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1vocm9o\",\"data-framer-name\":\"Logo 1\",layoutDependency:layoutDependency,layoutId:\"j5C4tmEJy\"}),FoxrWsOor&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:109,intrinsicWidth:539,pixelHeight:218,pixelWidth:1092,sizes:\"200px\",...toResponsiveImage(OTMGm9aez),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1p9x439\",\"data-framer-name\":\"Logo 2\",layoutDependency:layoutDependency,layoutId:\"EW77eldy1\"}),ZlTl6S829&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:109,intrinsicWidth:539,pixelHeight:218,pixelWidth:1178,sizes:\"200px\",...toResponsiveImage(x_acOdhvg),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-z43g6w\",\"data-framer-name\":\"Logo 3\",layoutDependency:layoutDependency,layoutId:\"xAupOCH36\"}),DiTUIp3if&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:109,intrinsicWidth:539,pixelHeight:218,pixelWidth:1174,sizes:\"200px\",...toResponsiveImage(H5QxDqECN),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-lgc9c8\",\"data-framer-name\":\"Logo 4\",layoutDependency:layoutDependency,layoutId:\"XwDuTcyy5\"}),zQdiMoo7W&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:109,intrinsicWidth:539,pixelHeight:218,pixelWidth:1024,sizes:\"200px\",...toResponsiveImage(XgVQuTsx1),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-qhl3du\",\"data-framer-name\":\"Logo 5\",layoutDependency:layoutDependency,layoutId:\"tR3I7ztZ_\"}),lt_vwTJoF&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:109,intrinsicWidth:539,pixelHeight:218,pixelWidth:1078,sizes:\"200px\",...toResponsiveImage(AEqdDAOCf),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-z2xx6a\",\"data-framer-name\":\"Logo 6\",layoutDependency:layoutDependency,layoutId:\"KhVUWu0X9\"}),ezoTpYI6O&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:109,intrinsicWidth:539,pixelHeight:218,pixelWidth:1092,sizes:\"200px\",...toResponsiveImage(cyXwxl3qK),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-9cbtj0\",\"data-framer-name\":\"Logo 7\",layoutDependency:layoutDependency,layoutId:\"F3DeQQexi\"}),bwBS4eWXr&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:109,intrinsicWidth:539,pixelHeight:218,pixelWidth:1178,sizes:\"200px\",...toResponsiveImage(ll107L1Cy),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1uejl7a\",\"data-framer-name\":\"Logo 8\",layoutDependency:layoutDependency,layoutId:\"iIS6rr9Pw\"}),V_GR2E_2K&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:109,intrinsicWidth:539,pixelHeight:218,pixelWidth:1174,sizes:\"200px\",...toResponsiveImage(Ak3PMppST),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1gjh5f2\",\"data-framer-name\":\"Logo 9\",layoutDependency:layoutDependency,layoutId:\"XeY_kGIPo\"}),lMUpWNk2l&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:109,intrinsicWidth:539,pixelHeight:218,pixelWidth:1024,sizes:\"200px\",...toResponsiveImage(pJz_jH1Z3),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-18wte6f\",\"data-framer-name\":\"Logo 10\",layoutDependency:layoutDependency,layoutId:\"aMYNEUP1S\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-huO2Q.framer-1lxchsq, .framer-huO2Q .framer-1lxchsq { display: block; }\",\".framer-huO2Q.framer-o4c1nk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 200px; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-huO2Q .framer-1dmcif3-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-huO2Q .framer-1vocm9o, .framer-huO2Q .framer-1p9x439, .framer-huO2Q .framer-z43g6w, .framer-huO2Q .framer-lgc9c8, .framer-huO2Q .framer-qhl3du, .framer-huO2Q .framer-z2xx6a, .framer-huO2Q .framer-9cbtj0, .framer-huO2Q .framer-1uejl7a, .framer-huO2Q .framer-1gjh5f2, .framer-huO2Q .framer-18wte6f { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-huO2Q.framer-o4c1nk { gap: 0px; } .framer-huO2Q.framer-o4c1nk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-huO2Q.framer-o4c1nk > :first-child { margin-top: 0px; } .framer-huO2Q.framer-o4c1nk > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerVariables {\"MggkWYymF\":\"direction\",\"qaPT5O2HH\":\"showLogo1\",\"G9Yq8agl8\":\"logo1\",\"FoxrWsOor\":\"showLogo2\",\"OTMGm9aez\":\"logo2\",\"ZlTl6S829\":\"showLogo3\",\"x_acOdhvg\":\"logo3\",\"DiTUIp3if\":\"showLogo4\",\"H5QxDqECN\":\"logo4\",\"zQdiMoo7W\":\"showLogo5\",\"XgVQuTsx1\":\"logo5\",\"lt_vwTJoF\":\"showLogo6\",\"AEqdDAOCf\":\"logo6\",\"ezoTpYI6O\":\"showLogo7\",\"cyXwxl3qK\":\"logo7\",\"bwBS4eWXr\":\"showLogo8\",\"ll107L1Cy\":\"logo8\",\"V_GR2E_2K\":\"showLogo9\",\"Ak3PMppST\":\"logo9\",\"lMUpWNk2l\":\"showLogo10\",\"pJz_jH1Z3\":\"logo10\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVB2Txf8le=withCSS(Component,css,\"framer-huO2Q\");export default FramerVB2Txf8le;FramerVB2Txf8le.displayName=\"Interactive/Ticker Logos\";FramerVB2Txf8le.defaultProps={height:200,width:1200};addPropertyControls(FramerVB2Txf8le,{MggkWYymF:TickerControls?.[\"direction\"]&&{...TickerControls[\"direction\"],defaultValue:\"left\",description:undefined,hidden:undefined,title:\"Direction\"},qaPT5O2HH:{defaultValue:true,title:\"Show Logo 1\",type:ControlType.Boolean},G9Yq8agl8:{__defaultAssetReference:\"data:framer/asset-reference,bzgGV9K5z80arAe2nvCcgqIE.png?originalFilename=Logo5.png&preferredSize=auto\",title:\"Logo 1\",type:ControlType.ResponsiveImage},FoxrWsOor:{defaultValue:true,title:\"Show Logo 2\",type:ControlType.Boolean},OTMGm9aez:{__defaultAssetReference:\"data:framer/asset-reference,G52KkFH9TuCGO82TP1znRqIFiA.png?originalFilename=Logo4.png&preferredSize=auto\",title:\"Logo 2\",type:ControlType.ResponsiveImage},ZlTl6S829:{defaultValue:true,title:\"Show Logo 3\",type:ControlType.Boolean},x_acOdhvg:{__defaultAssetReference:\"data:framer/asset-reference,LOorVZN8bgtC7Jiz0QnoigSGXXE.png?originalFilename=Logo3.png&preferredSize=auto\",title:\"Logo 3\",type:ControlType.ResponsiveImage},DiTUIp3if:{defaultValue:true,title:\"Show Logo 4\",type:ControlType.Boolean},H5QxDqECN:{__defaultAssetReference:\"data:framer/asset-reference,jVhOtd9Pewely28YsU8yFHWyc.png?originalFilename=Logo2.png&preferredSize=auto\",title:\"Logo 4\",type:ControlType.ResponsiveImage},zQdiMoo7W:{defaultValue:true,title:\"Show Logo 5\",type:ControlType.Boolean},XgVQuTsx1:{__defaultAssetReference:\"data:framer/asset-reference,Ldz8Lo702oafR9DUzr1LYYRMIM.png?originalFilename=Logo1.png&preferredSize=auto\",title:\"Logo 5\",type:ControlType.ResponsiveImage},lt_vwTJoF:{defaultValue:true,title:\"Show Logo 6\",type:ControlType.Boolean},AEqdDAOCf:{__defaultAssetReference:\"data:framer/asset-reference,bzgGV9K5z80arAe2nvCcgqIE.png?originalFilename=Logo5.png&preferredSize=auto\",title:\"Logo 6\",type:ControlType.ResponsiveImage},ezoTpYI6O:{defaultValue:true,title:\"Show Logo 7\",type:ControlType.Boolean},cyXwxl3qK:{__defaultAssetReference:\"data:framer/asset-reference,G52KkFH9TuCGO82TP1znRqIFiA.png?originalFilename=Logo4.png&preferredSize=auto\",title:\"Logo 7\",type:ControlType.ResponsiveImage},bwBS4eWXr:{defaultValue:true,title:\"Show Logo 8\",type:ControlType.Boolean},ll107L1Cy:{__defaultAssetReference:\"data:framer/asset-reference,LOorVZN8bgtC7Jiz0QnoigSGXXE.png?originalFilename=Logo3.png&preferredSize=auto\",title:\"Logo 8\",type:ControlType.ResponsiveImage},V_GR2E_2K:{defaultValue:true,title:\"Show Logo 9\",type:ControlType.Boolean},Ak3PMppST:{__defaultAssetReference:\"data:framer/asset-reference,jVhOtd9Pewely28YsU8yFHWyc.png?originalFilename=Logo2.png&preferredSize=auto\",title:\"Logo 9\",type:ControlType.ResponsiveImage},lMUpWNk2l:{defaultValue:true,title:\"Show Logo 10\",type:ControlType.Boolean},pJz_jH1Z3:{__defaultAssetReference:\"data:framer/asset-reference,Ldz8Lo702oafR9DUzr1LYYRMIM.png?originalFilename=Logo1.png&preferredSize=auto\",title:\"Logo 10\",type:ControlType.ResponsiveImage}});addFonts(FramerVB2Txf8le,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVB2Txf8le\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"MggkWYymF\\\":\\\"direction\\\",\\\"qaPT5O2HH\\\":\\\"showLogo1\\\",\\\"G9Yq8agl8\\\":\\\"logo1\\\",\\\"FoxrWsOor\\\":\\\"showLogo2\\\",\\\"OTMGm9aez\\\":\\\"logo2\\\",\\\"ZlTl6S829\\\":\\\"showLogo3\\\",\\\"x_acOdhvg\\\":\\\"logo3\\\",\\\"DiTUIp3if\\\":\\\"showLogo4\\\",\\\"H5QxDqECN\\\":\\\"logo4\\\",\\\"zQdiMoo7W\\\":\\\"showLogo5\\\",\\\"XgVQuTsx1\\\":\\\"logo5\\\",\\\"lt_vwTJoF\\\":\\\"showLogo6\\\",\\\"AEqdDAOCf\\\":\\\"logo6\\\",\\\"ezoTpYI6O\\\":\\\"showLogo7\\\",\\\"cyXwxl3qK\\\":\\\"logo7\\\",\\\"bwBS4eWXr\\\":\\\"showLogo8\\\",\\\"ll107L1Cy\\\":\\\"logo8\\\",\\\"V_GR2E_2K\\\":\\\"showLogo9\\\",\\\"Ak3PMppST\\\":\\\"logo9\\\",\\\"lMUpWNk2l\\\":\\\"showLogo10\\\",\\\"pJz_jH1Z3\\\":\\\"logo10\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VB2Txf8le.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import InteractiveTickerLogos from\"https://framerusercontent.com/modules/uc7tkzjh9hkkKzI7QZH6/LKfg3EVDcO7tX4gYjebN/VB2Txf8le.js\";const InteractiveTickerLogosFonts=getFonts(InteractiveTickerLogos);const cycleOrder=[\"MoxiNlYgN\",\"pbqyWl9c7\",\"tJsfLywVV\"];const serializationHash=\"framer-xIi2j\";const variantClassNames={MoxiNlYgN:\"framer-v-sszfl0\",pbqyWl9c7:\"framer-v-1eop18h\",tJsfLywVV:\"framer-v-ylq3da\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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={Desktop:\"MoxiNlYgN\",Phone:\"tJsfLywVV\",Tablet:\"pbqyWl9c7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MoxiNlYgN\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MoxiNlYgN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-sszfl0\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"MoxiNlYgN\",ref:refBinding,style:{...style},...addPropertyOverrides({pbqyWl9c7:{\"data-framer-name\":\"Tablet\"},tJsfLywVV:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3kr394\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"JSijBOBOo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-200)/2)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m3otwp-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v2LCJj6r0-container\",nodeId:\"v2LCJj6r0\",rendersWithMotion:true,scopeId:\"WfeUaTcFW\",children:/*#__PURE__*/_jsx(InteractiveTickerLogos,{AEqdDAOCf:addImageAlt({src:\"https://framerusercontent.com/images/zCOI4oEoOFsMfKiOPFHXEj6PzY.svg\"},\"\"),Ak3PMppST:addImageAlt({src:\"https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png\",srcSet:\"https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png?scale-down-to=512 512w,https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G52KkFH9TuCGO82TP1znRqIFiA.png 1092w\"},\"\"),bwBS4eWXr:false,cyXwxl3qK:addImageAlt({src:\"https://framerusercontent.com/images/mAZPxiUXYGgoQO56StHYpmKQ.svg\"},\"\"),DiTUIp3if:true,ezoTpYI6O:true,FoxrWsOor:true,G9Yq8agl8:addImageAlt({src:\"https://framerusercontent.com/images/tBMx6Bu0fGrjzdLercploic6WU.svg\"},\"\"),H5QxDqECN:addImageAlt({src:\"https://framerusercontent.com/images/ykkU2ZitiYoyH0PG5xVMY9SavA.svg\"},\"\"),height:\"100%\",id:\"v2LCJj6r0\",layoutId:\"v2LCJj6r0\",lMUpWNk2l:false,lt_vwTJoF:true,MggkWYymF:\"left\",OTMGm9aez:addImageAlt({src:\"https://framerusercontent.com/images/qF21iSrFSnUmggbbUNZPdXi10FU.svg\"},\"\"),pJz_jH1Z3:addImageAlt({src:\"https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png\",srcSet:\"https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png?scale-down-to=512 512w,https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bzgGV9K5z80arAe2nvCcgqIE.png 1078w\"},\"\"),qaPT5O2HH:true,style:{width:\"100%\"},V_GR2E_2K:false,width:\"100%\",x_acOdhvg:addImageAlt({src:\"https://framerusercontent.com/images/NFQQ120OTodPSFv4ggBTtaFf4.svg\"},\"\"),XgVQuTsx1:addImageAlt({src:\"https://framerusercontent.com/images/1VSitAbRYF10qkiR10kmXRTbE.svg\"},\"\"),ZlTl6S829:true,zQdiMoo7W:true})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xIi2j.framer-14rd7zf, .framer-xIi2j .framer-14rd7zf { display: block; }\",\".framer-xIi2j.framer-sszfl0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-xIi2j .framer-3kr394 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xIi2j .framer-1m3otwp-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xIi2j.framer-sszfl0, .framer-xIi2j .framer-3kr394 { gap: 0px; } .framer-xIi2j.framer-sszfl0 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-xIi2j.framer-sszfl0 > :first-child { margin-left: 0px; } .framer-xIi2j.framer-sszfl0 > :last-child { margin-right: 0px; } .framer-xIi2j .framer-3kr394 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xIi2j .framer-3kr394 > :first-child { margin-top: 0px; } .framer-xIi2j .framer-3kr394 > :last-child { margin-bottom: 0px; } }\",\".framer-xIi2j.framer-v-1eop18h.framer-sszfl0 { width: 810px; }\",\".framer-xIi2j.framer-v-ylq3da.framer-sszfl0 { width: 390px; }\",\".framer-xIi2j.framer-v-ylq3da .framer-3kr394 { gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xIi2j.framer-v-ylq3da .framer-3kr394 { gap: 0px; } .framer-xIi2j.framer-v-ylq3da .framer-3kr394 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xIi2j.framer-v-ylq3da .framer-3kr394 > :first-child { margin-top: 0px; } .framer-xIi2j.framer-v-ylq3da .framer-3kr394 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pbqyWl9c7\":{\"layout\":[\"fixed\",\"auto\"]},\"tJsfLywVV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerWfeUaTcFW=withCSS(Component,css,\"framer-xIi2j\");export default FramerWfeUaTcFW;FramerWfeUaTcFW.displayName=\"Section Logos/Logos 7\";FramerWfeUaTcFW.defaultProps={height:200,width:1200};addPropertyControls(FramerWfeUaTcFW,{variant:{options:[\"MoxiNlYgN\",\"pbqyWl9c7\",\"tJsfLywVV\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerWfeUaTcFW,[{explicitInter:true,fonts:[]},...InteractiveTickerLogosFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWfeUaTcFW\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pbqyWl9c7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tJsfLywVV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"200\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WfeUaTcFW.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "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", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "TickerControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "direction", "height", "id", "logo1", "logo10", "logo2", "logo3", "logo4", "logo5", "logo6", "logo7", "logo8", "logo9", "showLogo1", "showLogo10", "showLogo2", "showLogo3", "showLogo4", "showLogo5", "showLogo6", "showLogo7", "showLogo8", "showLogo9", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "MggkWYymF", "qaPT5O2HH", "G9Yq8agl8", "FoxrWsOor", "OTMGm9aez", "ZlTl6S829", "x_acOdhvg", "DiTUIp3if", "H5QxDqECN", "zQdiMoo7W", "XgVQuTsx1", "lt_vwTJoF", "AEqdDAOCf", "ezoTpYI6O", "cyXwxl3qK", "bwBS4eWXr", "ll107L1Cy", "V_GR2E_2K", "Ak3PMppST", "lMUpWNk2l", "pJz_jH1Z3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "Ticker", "Image2", "css", "FramerVB2Txf8le", "withCSS", "VB2Txf8le_default", "addPropertyControls", "TickerControls", "ControlType", "addFonts", "TickerFonts", "InteractiveTickerLogosFonts", "getFonts", "VB2Txf8le_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerWfeUaTcFW", "withCSS", "WfeUaTcFW_default", "addPropertyControls", "ControlType", "addFonts"]
}
