{"version":3,"file":"XGLY9JqoP.COMvqWqX.mjs","names":["Children","useRef","useMemo","useState","useCallback","size","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","getProps","createLayoutDependency","React.useRef","React.useId","Image","IntegrationLogos","React.useContext","React.useMemo","React.Fragment","React.useRef","React.useId"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js","https:/framerusercontent.com/modules/T38JQJj2YvymaiS2J9OI/YZXZnmRhPZ9M0H2mKOty/EMOS6AK4H.js","https:/framerusercontent.com/modules/DFcOCkt9zgD7sV1U2G4H/exJPNrazYAZMBxQom3UD/XGLY9JqoP.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 isCanvas=RenderTarget.current()===RenderTarget.canvas;// 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:\"✨\"}),/*#__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\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (315fd46)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"HgDcp9bzC\",\"jiSj8GJ1r\",\"Qx9_USpGZ\",\"bmUXGnmz2\",\"QFOacbpaC\",\"TpX349Vke\",\"oMGmtUAd2\",\"GfecuhQmG\",\"u9eX_II1g\",\"BB643PAr2\",\"O19E_6QS7\",\"snB6K5mJe\",\"VgBEgON6R\",\"cBsGaRZIO\",\"cp7exTIzw\",\"XUFGZdnVR\",\"NcZpXCKAr\",\"gxuFIA9JL\",\"IstMsIu6N\"];const serializationHash=\"framer-30jd0\";const variantClassNames={BB643PAr2:\"framer-v-7ylgby\",bmUXGnmz2:\"framer-v-1bsb9tk\",cBsGaRZIO:\"framer-v-1hbs9hj\",cp7exTIzw:\"framer-v-hujls4\",GfecuhQmG:\"framer-v-1xhjfpq\",gxuFIA9JL:\"framer-v-x2xixx\",HgDcp9bzC:\"framer-v-g2r1w4\",IstMsIu6N:\"framer-v-kzp2sm\",jiSj8GJ1r:\"framer-v-vbziv6\",NcZpXCKAr:\"framer-v-14jnd0v\",O19E_6QS7:\"framer-v-btem57\",oMGmtUAd2:\"framer-v-m9og07\",QFOacbpaC:\"framer-v-1w0zneh\",Qx9_USpGZ:\"framer-v-10mremd\",snB6K5mJe:\"framer-v-1nymk9j\",TpX349Vke:\"framer-v-wsscex\",u9eX_II1g:\"framer-v-1yrfcxl\",VgBEgON6R:\"framer-v-16fo16r\",XUFGZdnVR:\"framer-v-19vib5v\"};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={\"google-analytics\":\"cp7exTIzw\",\"ms-fabric\":\"XUFGZdnVR\",\"ms-teams\":\"gxuFIA9JL\",\"salesforce-marketing-cloud\":\"Qx9_USpGZ\",adobe:\"jiSj8GJ1r\",aws:\"oMGmtUAd2\",confluent:\"HgDcp9bzC\",csv:\"IstMsIu6N\",databricks:\"u9eX_II1g\",datapower:\"snB6K5mJe\",dynamic365:\"cBsGaRZIO\",marketo:\"TpX349Vke\",n3:\"O19E_6QS7\",pega:\"BB643PAr2\",powerbi:\"VgBEgON6R\",s3:\"GfecuhQmG\",salesforce:\"QFOacbpaC\",slack:\"NcZpXCKAr\",snowflake:\"bmUXGnmz2\"};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:\"HgDcp9bzC\"};};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,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HgDcp9bzC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"jiSj8GJ1r\",\"Qx9_USpGZ\",\"bmUXGnmz2\",\"QFOacbpaC\",\"TpX349Vke\",\"oMGmtUAd2\",\"GfecuhQmG\",\"u9eX_II1g\",\"BB643PAr2\",\"O19E_6QS7\",\"snB6K5mJe\",\"VgBEgON6R\",\"cBsGaRZIO\",\"cp7exTIzw\",\"XUFGZdnVR\",\"NcZpXCKAr\",\"gxuFIA9JL\",\"IstMsIu6N\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"jiSj8GJ1r\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Qx9_USpGZ\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"bmUXGnmz2\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"QFOacbpaC\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"TpX349Vke\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"oMGmtUAd2\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"GfecuhQmG\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"u9eX_II1g\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"BB643PAr2\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"O19E_6QS7\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"snB6K5mJe\")return true;return false;};const isDisplayed12=()=>{if(baseVariant===\"VgBEgON6R\")return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"cBsGaRZIO\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"cp7exTIzw\")return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"XUFGZdnVR\")return true;return false;};const isDisplayed16=()=>{if(baseVariant===\"NcZpXCKAr\")return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"gxuFIA9JL\")return true;return false;};const isDisplayed18=()=>{if(baseVariant===\"IstMsIu6N\")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-g2r1w4\",className,classNames),\"data-framer-name\":\"confluent\",layoutDependency:layoutDependency,layoutId:\"HgDcp9bzC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({BB643PAr2:{\"data-framer-name\":\"pega\"},bmUXGnmz2:{\"data-framer-name\":\"snowflake\"},cBsGaRZIO:{\"data-framer-name\":\"dynamic365\"},cp7exTIzw:{\"data-framer-name\":\"google-analytics\"},GfecuhQmG:{\"data-framer-name\":\"s3\"},gxuFIA9JL:{\"data-framer-name\":\"ms-teams\"},IstMsIu6N:{\"data-framer-name\":\"csv\"},jiSj8GJ1r:{\"data-framer-name\":\"adobe\"},NcZpXCKAr:{\"data-framer-name\":\"slack\"},O19E_6QS7:{\"data-framer-name\":\"n3\"},oMGmtUAd2:{\"data-framer-name\":\"aws\"},QFOacbpaC:{\"data-framer-name\":\"salesforce\"},Qx9_USpGZ:{\"data-framer-name\":\"salesforce-marketing-cloud\"},snB6K5mJe:{\"data-framer-name\":\"datapower\"},TpX349Vke:{\"data-framer-name\":\"marketo\"},u9eX_II1g:{\"data-framer-name\":\"databricks\"},VgBEgON6R:{\"data-framer-name\":\"powerbi\"},XUFGZdnVR:{\"data-framer-name\":\"ms-fabric\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:724,pixelHeight:280,pixelWidth:1448,sizes:\"1px\",src:\"https://framerusercontent.com/images/0U9NCX4i9VHdjOmk67IdYCaxjs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0U9NCX4i9VHdjOmk67IdYCaxjs.png?scale-down-to=512 512w,https://framerusercontent.com/images/0U9NCX4i9VHdjOmk67IdYCaxjs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0U9NCX4i9VHdjOmk67IdYCaxjs.png 1448w\"},className:\"framer-1dpu5pq\",\"data-framer-name\":\"confluent\",layoutDependency:layoutDependency,layoutId:\"aljRLF1UY\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:531.5,pixelHeight:280,pixelWidth:1063,src:\"https://framerusercontent.com/images/t4HPfaphhOVyKcZKYHTlTjAHfdo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/t4HPfaphhOVyKcZKYHTlTjAHfdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/t4HPfaphhOVyKcZKYHTlTjAHfdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/t4HPfaphhOVyKcZKYHTlTjAHfdo.png 1063w\"},className:\"framer-zji6gr\",\"data-framer-name\":\"adobe\",layoutDependency:layoutDependency,layoutId:\"dHvk1ydI0\",...addPropertyOverrides({jiSj8GJ1r:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:531.5,pixelHeight:280,pixelWidth:1063,sizes:\"532px\",src:\"https://framerusercontent.com/images/t4HPfaphhOVyKcZKYHTlTjAHfdo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/t4HPfaphhOVyKcZKYHTlTjAHfdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/t4HPfaphhOVyKcZKYHTlTjAHfdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/t4HPfaphhOVyKcZKYHTlTjAHfdo.png 1063w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:441,pixelHeight:280,pixelWidth:882,src:\"https://framerusercontent.com/images/6570tKd7H5BSH5tkbwlyhFJyNSI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6570tKd7H5BSH5tkbwlyhFJyNSI.png?scale-down-to=512 512w,https://framerusercontent.com/images/6570tKd7H5BSH5tkbwlyhFJyNSI.png 882w\"},className:\"framer-1d3b46h\",\"data-framer-name\":\"salesforce_marketing_cloud\",layoutDependency:layoutDependency,layoutId:\"jzXrUj7Ea\",...addPropertyOverrides({Qx9_USpGZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:441,pixelHeight:280,pixelWidth:882,sizes:\"441px\",src:\"https://framerusercontent.com/images/6570tKd7H5BSH5tkbwlyhFJyNSI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6570tKd7H5BSH5tkbwlyhFJyNSI.png?scale-down-to=512 512w,https://framerusercontent.com/images/6570tKd7H5BSH5tkbwlyhFJyNSI.png 882w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:586,pixelHeight:280,pixelWidth:1172,src:\"https://framerusercontent.com/images/tBesuVkQVyweQ9fztgDTFjiisiU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tBesuVkQVyweQ9fztgDTFjiisiU.png?scale-down-to=512 512w,https://framerusercontent.com/images/tBesuVkQVyweQ9fztgDTFjiisiU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tBesuVkQVyweQ9fztgDTFjiisiU.png 1172w\"},className:\"framer-17sgjjp\",\"data-framer-name\":\"Snowflake\",layoutDependency:layoutDependency,layoutId:\"xDrkNiiJ_\",...addPropertyOverrides({bmUXGnmz2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:586,pixelHeight:280,pixelWidth:1172,sizes:\"586px\",src:\"https://framerusercontent.com/images/tBesuVkQVyweQ9fztgDTFjiisiU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tBesuVkQVyweQ9fztgDTFjiisiU.png?scale-down-to=512 512w,https://framerusercontent.com/images/tBesuVkQVyweQ9fztgDTFjiisiU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tBesuVkQVyweQ9fztgDTFjiisiU.png 1172w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:200.5,pixelHeight:280,pixelWidth:401,src:\"https://framerusercontent.com/images/n7ASGgIEl6bDsMwej0TCysXmSfQ.png\"},className:\"framer-1q4jwfb\",\"data-framer-name\":\"salesforce\",layoutDependency:layoutDependency,layoutId:\"khO02ANMf\"}),isDisplayed5()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:501,pixelHeight:280,pixelWidth:1002,src:\"https://framerusercontent.com/images/lYk2hxMVXnAU91Ql7Y0TnLqG3I.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lYk2hxMVXnAU91Ql7Y0TnLqG3I.png?scale-down-to=512 512w,https://framerusercontent.com/images/lYk2hxMVXnAU91Ql7Y0TnLqG3I.png 1002w\"},className:\"framer-1v5mqip\",\"data-framer-name\":\"marketo\",layoutDependency:layoutDependency,layoutId:\"b7i9YvD3R\",...addPropertyOverrides({TpX349Vke:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:501,pixelHeight:280,pixelWidth:1002,sizes:\"501px\",src:\"https://framerusercontent.com/images/lYk2hxMVXnAU91Ql7Y0TnLqG3I.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lYk2hxMVXnAU91Ql7Y0TnLqG3I.png?scale-down-to=512 512w,https://framerusercontent.com/images/lYk2hxMVXnAU91Ql7Y0TnLqG3I.png 1002w\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:234.5,pixelHeight:280,pixelWidth:469,src:\"https://framerusercontent.com/images/YHCqWHCnDhTqbl2UJ18y5awPPzI.png\"},className:\"framer-1dxxy98\",\"data-framer-name\":\"aws\",layoutDependency:layoutDependency,layoutId:\"gwgyPEhUQ\"}),isDisplayed7()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:168,pixelHeight:400,pixelWidth:336,src:\"https://framerusercontent.com/images/zd6sDQY93FFzULxV1zMeJn37Ig.png\"},className:\"framer-feg2jx\",\"data-framer-name\":\"AWS_S3\",layoutDependency:layoutDependency,layoutId:\"hlbvg69cP\"}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:352.5,pixelHeight:400,pixelWidth:705,src:\"https://framerusercontent.com/images/qhelZe7eQMmAn4oF6Iel55TA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qhelZe7eQMmAn4oF6Iel55TA.png?scale-down-to=512 512w,https://framerusercontent.com/images/qhelZe7eQMmAn4oF6Iel55TA.png 705w\"},className:\"framer-1kpyn0t\",\"data-framer-name\":\"Databricks\",layoutDependency:layoutDependency,layoutId:\"WO7AJtfGH\",...addPropertyOverrides({u9eX_II1g:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:352.5,pixelHeight:400,pixelWidth:705,sizes:\"353px\",src:\"https://framerusercontent.com/images/qhelZe7eQMmAn4oF6Iel55TA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qhelZe7eQMmAn4oF6Iel55TA.png?scale-down-to=512 512w,https://framerusercontent.com/images/qhelZe7eQMmAn4oF6Iel55TA.png 705w\"}}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:648,pixelHeight:280,pixelWidth:1296,src:\"https://framerusercontent.com/images/5cYAOgydB6Bhsc7VzA5ynsHOOw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5cYAOgydB6Bhsc7VzA5ynsHOOw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5cYAOgydB6Bhsc7VzA5ynsHOOw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5cYAOgydB6Bhsc7VzA5ynsHOOw.png 1296w\"},className:\"framer-10f00pf\",\"data-framer-name\":\"Pega\",layoutDependency:layoutDependency,layoutId:\"sgTviJ803\",...addPropertyOverrides({BB643PAr2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:648,pixelHeight:280,pixelWidth:1296,sizes:\"648px\",src:\"https://framerusercontent.com/images/5cYAOgydB6Bhsc7VzA5ynsHOOw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5cYAOgydB6Bhsc7VzA5ynsHOOw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5cYAOgydB6Bhsc7VzA5ynsHOOw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5cYAOgydB6Bhsc7VzA5ynsHOOw.png 1296w\"}}},baseVariant,gestureVariant)}),isDisplayed10()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:273.5,pixelHeight:280,pixelWidth:547,src:\"https://framerusercontent.com/images/nsIv7vMxJnhe0YnMAsQaQs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nsIv7vMxJnhe0YnMAsQaQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/nsIv7vMxJnhe0YnMAsQaQs.png 547w\"},className:\"framer-1muimzj\",\"data-framer-name\":\"n3Hub\",layoutDependency:layoutDependency,layoutId:\"OjypmgLTg\",...addPropertyOverrides({O19E_6QS7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:273.5,pixelHeight:280,pixelWidth:547,sizes:\"274px\",src:\"https://framerusercontent.com/images/nsIv7vMxJnhe0YnMAsQaQs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nsIv7vMxJnhe0YnMAsQaQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/nsIv7vMxJnhe0YnMAsQaQs.png 547w\"}}},baseVariant,gestureVariant)}),isDisplayed11()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:385.5,pixelHeight:280,pixelWidth:771,src:\"https://framerusercontent.com/images/VYGBG10R4SzFUQCh8zDheCbDYJM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VYGBG10R4SzFUQCh8zDheCbDYJM.png?scale-down-to=512 512w,https://framerusercontent.com/images/VYGBG10R4SzFUQCh8zDheCbDYJM.png 771w\"},className:\"framer-12gbamj\",\"data-framer-name\":\"ibm_datapower\",layoutDependency:layoutDependency,layoutId:\"IvqVDDOy6\",...addPropertyOverrides({snB6K5mJe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:385.5,pixelHeight:280,pixelWidth:771,sizes:\"386px\",src:\"https://framerusercontent.com/images/VYGBG10R4SzFUQCh8zDheCbDYJM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VYGBG10R4SzFUQCh8zDheCbDYJM.png?scale-down-to=512 512w,https://framerusercontent.com/images/VYGBG10R4SzFUQCh8zDheCbDYJM.png 771w\"}}},baseVariant,gestureVariant)}),isDisplayed12()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:516.5,pixelHeight:280,pixelWidth:1033,src:\"https://framerusercontent.com/images/8XcPiyQFI8lkQ9yQwUnt6HmJDtM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8XcPiyQFI8lkQ9yQwUnt6HmJDtM.png?scale-down-to=512 512w,https://framerusercontent.com/images/8XcPiyQFI8lkQ9yQwUnt6HmJDtM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8XcPiyQFI8lkQ9yQwUnt6HmJDtM.png 1033w\"},className:\"framer-1g736l5\",\"data-framer-name\":\"power_bi\",layoutDependency:layoutDependency,layoutId:\"nJMUHoSgr\",...addPropertyOverrides({VgBEgON6R:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:516.5,pixelHeight:280,pixelWidth:1033,sizes:\"517px\",src:\"https://framerusercontent.com/images/8XcPiyQFI8lkQ9yQwUnt6HmJDtM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8XcPiyQFI8lkQ9yQwUnt6HmJDtM.png?scale-down-to=512 512w,https://framerusercontent.com/images/8XcPiyQFI8lkQ9yQwUnt6HmJDtM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8XcPiyQFI8lkQ9yQwUnt6HmJDtM.png 1033w\"}}},baseVariant,gestureVariant)}),isDisplayed13()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:455.5,pixelHeight:280,pixelWidth:911,src:\"https://framerusercontent.com/images/LZcGFoe0duMLC7NRJOamOMwOI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LZcGFoe0duMLC7NRJOamOMwOI.png?scale-down-to=512 512w,https://framerusercontent.com/images/LZcGFoe0duMLC7NRJOamOMwOI.png 911w\"},className:\"framer-uc0unl\",\"data-framer-name\":\"Dynamics_365\",layoutDependency:layoutDependency,layoutId:\"j_3LheHGq\",...addPropertyOverrides({cBsGaRZIO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:455.5,pixelHeight:280,pixelWidth:911,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/LZcGFoe0duMLC7NRJOamOMwOI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LZcGFoe0duMLC7NRJOamOMwOI.png?scale-down-to=512 512w,https://framerusercontent.com/images/LZcGFoe0duMLC7NRJOamOMwOI.png 911w\"}}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:407.5,pixelHeight:280,pixelWidth:815,src:\"https://framerusercontent.com/images/QJMQcJUoz1S9X4WXijUhMB8uPU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QJMQcJUoz1S9X4WXijUhMB8uPU.png?scale-down-to=512 512w,https://framerusercontent.com/images/QJMQcJUoz1S9X4WXijUhMB8uPU.png 815w\"},className:\"framer-15263r8\",\"data-framer-name\":\"google_analytics\",layoutDependency:layoutDependency,layoutId:\"EEsgMWQVe\",...addPropertyOverrides({cp7exTIzw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:407.5,pixelHeight:280,pixelWidth:815,sizes:\"408px\",src:\"https://framerusercontent.com/images/QJMQcJUoz1S9X4WXijUhMB8uPU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QJMQcJUoz1S9X4WXijUhMB8uPU.png?scale-down-to=512 512w,https://framerusercontent.com/images/QJMQcJUoz1S9X4WXijUhMB8uPU.png 815w\"}}},baseVariant,gestureVariant)}),isDisplayed15()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:775,pixelHeight:200,pixelWidth:1550,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xBFijgQvN3LK1PMUUJdOXzfA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xBFijgQvN3LK1PMUUJdOXzfA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xBFijgQvN3LK1PMUUJdOXzfA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xBFijgQvN3LK1PMUUJdOXzfA.png 1550w\"},className:\"framer-1er4j11\",\"data-framer-name\":\"ms_fabric\",layoutDependency:layoutDependency,layoutId:\"yt1CcPPcC\",...addPropertyOverrides({XUFGZdnVR:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:775,pixelHeight:200,pixelWidth:1550,positionX:\"center\",positionY:\"center\",sizes:\"620px\",src:\"https://framerusercontent.com/images/xBFijgQvN3LK1PMUUJdOXzfA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xBFijgQvN3LK1PMUUJdOXzfA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xBFijgQvN3LK1PMUUJdOXzfA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xBFijgQvN3LK1PMUUJdOXzfA.png 1550w\"}}},baseVariant,gestureVariant)}),isDisplayed16()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:471,pixelHeight:240,pixelWidth:942,src:\"https://framerusercontent.com/images/84WfDVFeGXMT7uNa2Q5f68LkE0U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/84WfDVFeGXMT7uNa2Q5f68LkE0U.png?scale-down-to=512 512w,https://framerusercontent.com/images/84WfDVFeGXMT7uNa2Q5f68LkE0U.png 942w\"},className:\"framer-7a85j3\",\"data-framer-name\":\"slack\",layoutDependency:layoutDependency,layoutId:\"o2jlVTgtw\",...addPropertyOverrides({NcZpXCKAr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:471,pixelHeight:240,pixelWidth:942,sizes:\"471px\",src:\"https://framerusercontent.com/images/84WfDVFeGXMT7uNa2Q5f68LkE0U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/84WfDVFeGXMT7uNa2Q5f68LkE0U.png?scale-down-to=512 512w,https://framerusercontent.com/images/84WfDVFeGXMT7uNa2Q5f68LkE0U.png 942w\"}}},baseVariant,gestureVariant)}),isDisplayed17()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:151,pixelHeight:280,pixelWidth:302,src:\"https://framerusercontent.com/images/HXeuPDfhuD8ebbg32kFIYn3W6Q.png\"},className:\"framer-fasjov\",\"data-framer-name\":\"Microsoft_Office_Teams\",layoutDependency:layoutDependency,layoutId:\"poGd9YTUf\"}),isDisplayed18()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200.5,pixelHeight:400,pixelWidth:401,src:\"https://framerusercontent.com/images/DJSmupZAOjJrRZsHo6Y5wnW8c.png\"},className:\"framer-1b10ogh\",\"data-framer-name\":\"csv\",layoutDependency:layoutDependency,layoutId:\"jtflAfi0P\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-30jd0.framer-16y12vb, .framer-30jd0 .framer-16y12vb { display: block; }\",\".framer-30jd0.framer-g2r1w4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 139px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 719px; }\",\".framer-30jd0 .framer-1dpu5pq { aspect-ratio: 5.171428571428572 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 1034px); }\",\".framer-30jd0 .framer-zji6gr { aspect-ratio: 3.786476868327402 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 757px); }\",\".framer-30jd0 .framer-1d3b46h { aspect-ratio: 3.15 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 630px); }\",\".framer-30jd0 .framer-17sgjjp { aspect-ratio: 4.185714285714286 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 837px); }\",\".framer-30jd0 .framer-1q4jwfb { aspect-ratio: 1.4321428571428572 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 286px); }\",\".framer-30jd0 .framer-1v5mqip { aspect-ratio: 3.5785714285714287 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 716px); }\",\".framer-30jd0 .framer-1dxxy98 { aspect-ratio: 1.675 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 335px); }\",\".framer-30jd0 .framer-feg2jx { aspect-ratio: 0.84 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 168px); }\",\".framer-30jd0 .framer-1kpyn0t { aspect-ratio: 1.7625 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 353px); }\",\".framer-30jd0 .framer-10f00pf { aspect-ratio: 4.628571428571429 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 926px); }\",\".framer-30jd0 .framer-1muimzj { aspect-ratio: 1.9535714285714285 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 391px); }\",\".framer-30jd0 .framer-12gbamj { aspect-ratio: 2.7535714285714286 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 551px); }\",\".framer-30jd0 .framer-1g736l5 { aspect-ratio: 3.6892857142857145 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 738px); }\",\".framer-30jd0 .framer-uc0unl { aspect-ratio: 3.2535714285714286 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; width: 100%; }\",\".framer-30jd0 .framer-15263r8 { aspect-ratio: 2.9107142857142856 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 582px); }\",\".framer-30jd0 .framer-1er4j11 { aspect-ratio: 5.166666666666667 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 643px); }\",\".framer-30jd0 .framer-7a85j3 { aspect-ratio: 3.925 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 785px); }\",\".framer-30jd0 .framer-fasjov { aspect-ratio: 1.0785714285714285 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 216px); }\",\".framer-30jd0 .framer-1b10ogh { aspect-ratio: 1.0025 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 201px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-30jd0.framer-g2r1w4 { gap: 0px; } .framer-30jd0.framer-g2r1w4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-30jd0.framer-g2r1w4 > :first-child { margin-left: 0px; } .framer-30jd0.framer-g2r1w4 > :last-child { margin-right: 0px; } }\",\".framer-30jd0.framer-v-vbziv6.framer-g2r1w4 { height: 140px; width: 532px; }\",\".framer-30jd0.framer-v-vbziv6 .framer-zji6gr { width: var(--framer-aspect-ratio-supported, 530px); }\",\".framer-30jd0.framer-v-10mremd.framer-g2r1w4 { height: 140px; width: 441px; }\",\".framer-30jd0.framer-v-10mremd .framer-1d3b46h { width: var(--framer-aspect-ratio-supported, 441px); }\",\".framer-30jd0.framer-v-1bsb9tk.framer-g2r1w4 { height: 140px; width: 586px; }\",\".framer-30jd0.framer-v-1bsb9tk .framer-17sgjjp { width: var(--framer-aspect-ratio-supported, 586px); }\",\".framer-30jd0.framer-v-1w0zneh.framer-g2r1w4 { height: 141px; width: 201px; }\",\".framer-30jd0.framer-v-1w0zneh .framer-1q4jwfb, .framer-30jd0.framer-v-kzp2sm .framer-1b10ogh { width: var(--framer-aspect-ratio-supported, 202px); }\",\".framer-30jd0.framer-v-wsscex.framer-g2r1w4 { height: 140px; width: 501px; }\",\".framer-30jd0.framer-v-wsscex .framer-1v5mqip { width: var(--framer-aspect-ratio-supported, 501px); }\",\".framer-30jd0.framer-v-m9og07.framer-g2r1w4 { height: 141px; width: 235px; }\",\".framer-30jd0.framer-v-m9og07 .framer-1dxxy98 { width: var(--framer-aspect-ratio-supported, 236px); }\",\".framer-30jd0.framer-v-1xhjfpq.framer-g2r1w4 { height: 200px; width: 168px; }\",\".framer-30jd0.framer-v-1yrfcxl.framer-g2r1w4 { height: 201px; width: 353px; }\",\".framer-30jd0.framer-v-1yrfcxl .framer-1kpyn0t { width: var(--framer-aspect-ratio-supported, 354px); }\",\".framer-30jd0.framer-v-7ylgby.framer-g2r1w4 { height: 140px; width: 648px; }\",\".framer-30jd0.framer-v-7ylgby .framer-10f00pf { width: var(--framer-aspect-ratio-supported, 648px); }\",\".framer-30jd0.framer-v-btem57.framer-g2r1w4 { height: 141px; width: 274px; }\",\".framer-30jd0.framer-v-btem57 .framer-1muimzj { width: var(--framer-aspect-ratio-supported, 275px); }\",\".framer-30jd0.framer-v-1nymk9j.framer-g2r1w4 { height: 140px; width: 386px; }\",\".framer-30jd0.framer-v-1nymk9j .framer-12gbamj { width: var(--framer-aspect-ratio-supported, 386px); }\",\".framer-30jd0.framer-v-16fo16r.framer-g2r1w4 { height: 140px; width: 517px; }\",\".framer-30jd0.framer-v-16fo16r .framer-1g736l5 { width: var(--framer-aspect-ratio-supported, 517px); }\",\".framer-30jd0.framer-v-1hbs9hj.framer-g2r1w4 { height: 160px; width: 456px; }\",\".framer-30jd0.framer-v-1hbs9hj .framer-uc0unl { height: var(--framer-aspect-ratio-supported, 140px); }\",\".framer-30jd0.framer-v-hujls4.framer-g2r1w4 { height: 140px; width: 408px; }\",\".framer-30jd0.framer-v-hujls4 .framer-15263r8 { width: var(--framer-aspect-ratio-supported, 408px); }\",\".framer-30jd0.framer-v-19vib5v.framer-g2r1w4 { height: 120px; width: 620px; }\",\".framer-30jd0.framer-v-19vib5v .framer-1er4j11 { order: 0; width: var(--framer-aspect-ratio-supported, 620px); }\",\".framer-30jd0.framer-v-14jnd0v.framer-g2r1w4 { height: 120px; width: 471px; }\",\".framer-30jd0.framer-v-14jnd0v .framer-7a85j3 { width: var(--framer-aspect-ratio-supported, 471px); }\",\".framer-30jd0.framer-v-x2xixx.framer-g2r1w4 { height: 140px; width: 151px; }\",\".framer-30jd0.framer-v-x2xixx .framer-fasjov { width: var(--framer-aspect-ratio-supported, 151px); }\",\".framer-30jd0.framer-v-kzp2sm.framer-g2r1w4 { height: 201px; width: 201px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 139\n * @framerIntrinsicWidth 719\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jiSj8GJ1r\":{\"layout\":[\"fixed\",\"fixed\"]},\"Qx9_USpGZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"bmUXGnmz2\":{\"layout\":[\"fixed\",\"fixed\"]},\"QFOacbpaC\":{\"layout\":[\"fixed\",\"fixed\"]},\"TpX349Vke\":{\"layout\":[\"fixed\",\"fixed\"]},\"oMGmtUAd2\":{\"layout\":[\"fixed\",\"fixed\"]},\"GfecuhQmG\":{\"layout\":[\"fixed\",\"fixed\"]},\"u9eX_II1g\":{\"layout\":[\"fixed\",\"fixed\"]},\"BB643PAr2\":{\"layout\":[\"fixed\",\"fixed\"]},\"O19E_6QS7\":{\"layout\":[\"fixed\",\"fixed\"]},\"snB6K5mJe\":{\"layout\":[\"fixed\",\"fixed\"]},\"VgBEgON6R\":{\"layout\":[\"fixed\",\"fixed\"]},\"cBsGaRZIO\":{\"layout\":[\"fixed\",\"fixed\"]},\"cp7exTIzw\":{\"layout\":[\"fixed\",\"fixed\"]},\"XUFGZdnVR\":{\"layout\":[\"fixed\",\"fixed\"]},\"NcZpXCKAr\":{\"layout\":[\"fixed\",\"fixed\"]},\"gxuFIA9JL\":{\"layout\":[\"fixed\",\"fixed\"]},\"IstMsIu6N\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEMOS6AK4H=withCSS(Component,css,\"framer-30jd0\");export default FramerEMOS6AK4H;FramerEMOS6AK4H.displayName=\"Integration logos\";FramerEMOS6AK4H.defaultProps={height:139,width:719};addPropertyControls(FramerEMOS6AK4H,{variant:{options:[\"HgDcp9bzC\",\"jiSj8GJ1r\",\"Qx9_USpGZ\",\"bmUXGnmz2\",\"QFOacbpaC\",\"TpX349Vke\",\"oMGmtUAd2\",\"GfecuhQmG\",\"u9eX_II1g\",\"BB643PAr2\",\"O19E_6QS7\",\"snB6K5mJe\",\"VgBEgON6R\",\"cBsGaRZIO\",\"cp7exTIzw\",\"XUFGZdnVR\",\"NcZpXCKAr\",\"gxuFIA9JL\",\"IstMsIu6N\"],optionTitles:[\"confluent\",\"adobe\",\"salesforce-marketing-cloud\",\"snowflake\",\"salesforce\",\"marketo\",\"aws\",\"s3\",\"databricks\",\"pega\",\"n3\",\"datapower\",\"powerbi\",\"dynamic365\",\"google-analytics\",\"ms-fabric\",\"slack\",\"ms-teams\",\"csv\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEMOS6AK4H,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEMOS6AK4H\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"719\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jiSj8GJ1r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Qx9_USpGZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bmUXGnmz2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QFOacbpaC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TpX349Vke\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oMGmtUAd2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GfecuhQmG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u9eX_II1g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BB643PAr2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O19E_6QS7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"snB6K5mJe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VgBEgON6R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cBsGaRZIO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cp7exTIzw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XUFGZdnVR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NcZpXCKAr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gxuFIA9JL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IstMsIu6N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"139\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EMOS6AK4H.map","// Generated by Framer (2c4b293)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,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/XVUmpmPn1EPL0dzocT35/Ticker.js\";import IntegrationLogos from\"https://framerusercontent.com/modules/T38JQJj2YvymaiS2J9OI/YZXZnmRhPZ9M0H2mKOty/EMOS6AK4H.js\";const IntegrationLogosFonts=getFonts(IntegrationLogos);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"qvQfZ5f0S\"];const serializationHash=\"framer-jRWbj\";const variantClassNames={qvQfZ5f0S:\"framer-v-1ug4ntp\"};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 getProps=({height,id,width,...props})=>{return{...props};};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,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qvQfZ5f0S\",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-1ug4ntp\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qvQfZ5f0S\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16guz5u-container\",layoutDependency:layoutDependency,layoutId:\"q195Qu1G9-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:44,height:\"100%\",hoverFactor:.8,id:\"q195Qu1G9\",layoutId:\"q195Qu1G9\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"311px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fwsv90-container\",layoutDependency:layoutDependency,layoutId:\"YcD3MOiim-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"YcD3MOiim\",layoutId:\"YcD3MOiim\",style:{height:\"100%\",width:\"100%\"},variant:\"HgDcp9bzC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"228px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rbm5c2-container\",layoutDependency:layoutDependency,layoutId:\"INpaacNSv-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"INpaacNSv\",layoutId:\"INpaacNSv\",style:{height:\"100%\",width:\"100%\"},variant:\"jiSj8GJ1r\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"221px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uxhdu7-container\",layoutDependency:layoutDependency,layoutId:\"YI5_aTfZy-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"YI5_aTfZy\",layoutId:\"YI5_aTfZy\",style:{height:\"100%\",width:\"100%\"},variant:\"Qx9_USpGZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"251.1429px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1idswoh-container\",layoutDependency:layoutDependency,layoutId:\"H2H_sm_IH-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"H2H_sm_IH\",layoutId:\"H2H_sm_IH\",style:{height:\"100%\",width:\"100%\"},variant:\"bmUXGnmz2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"99.7872px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-thdtif-container\",layoutDependency:layoutDependency,layoutId:\"IqxK7HGKV-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"IqxK7HGKV\",layoutId:\"IqxK7HGKV\",style:{height:\"100%\",width:\"100%\"},variant:\"QFOacbpaC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"214.7143px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9hsrn1-container\",layoutDependency:layoutDependency,layoutId:\"rDNDQSYIg-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"rDNDQSYIg\",layoutId:\"rDNDQSYIg\",style:{height:\"100%\",width:\"100%\"},variant:\"TpX349Vke\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"100px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dmaw7b-container\",layoutDependency:layoutDependency,layoutId:\"W6sSGBReP-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"W6sSGBReP\",layoutId:\"W6sSGBReP\",style:{height:\"100%\",width:\"100%\"},variant:\"oMGmtUAd2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"50.4px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3xs7er-container\",layoutDependency:layoutDependency,layoutId:\"tHkNvscrb-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"tHkNvscrb\",layoutId:\"tHkNvscrb\",style:{height:\"100%\",width:\"100%\"},variant:\"GfecuhQmG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"122.9353px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ala32g-container\",layoutDependency:layoutDependency,layoutId:\"yALUYbVEV-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"yALUYbVEV\",layoutId:\"yALUYbVEV\",style:{height:\"100%\",width:\"100%\"},variant:\"u9eX_II1g\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"277.7143px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6p9rpt-container\",layoutDependency:layoutDependency,layoutId:\"fmJOLylSt-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"fmJOLylSt\",layoutId:\"fmJOLylSt\",style:{height:\"100%\",width:\"100%\"},variant:\"BB643PAr2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"116.5957px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yygk4i-container\",layoutDependency:layoutDependency,layoutId:\"fegWu2sbm-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"fegWu2sbm\",layoutId:\"fegWu2sbm\",style:{height:\"100%\",width:\"100%\"},variant:\"O19E_6QS7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"165.4286px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uz9p38-container\",layoutDependency:layoutDependency,layoutId:\"Aae3uU3PC-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"Aae3uU3PC\",layoutId:\"Aae3uU3PC\",style:{height:\"100%\",width:\"100%\"},variant:\"snB6K5mJe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"221.5714px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w2hjtz-container\",layoutDependency:layoutDependency,layoutId:\"ZXoA3zJEQ-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"ZXoA3zJEQ\",layoutId:\"ZXoA3zJEQ\",style:{height:\"100%\",width:\"100%\"},variant:\"VgBEgON6R\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"228px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jq0j15-container\",layoutDependency:layoutDependency,layoutId:\"YGZUIVRpe-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"YGZUIVRpe\",layoutId:\"YGZUIVRpe\",style:{height:\"100%\",width:\"100%\"},variant:\"cBsGaRZIO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"174.8571px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-phbivv-container\",layoutDependency:layoutDependency,layoutId:\"haVZz7BJG-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"haVZz7BJG\",layoutId:\"haVZz7BJG\",style:{height:\"100%\",width:\"100%\"},variant:\"cp7exTIzw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"387.5px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xebt52-container\",layoutDependency:layoutDependency,layoutId:\"xoWikA_o0-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"xoWikA_o0\",layoutId:\"xoWikA_o0\",style:{height:\"100%\",width:\"100%\"},variant:\"XUFGZdnVR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"106px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ib8t2-container\",layoutDependency:layoutDependency,layoutId:\"zRmCruTWN-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"zRmCruTWN\",layoutId:\"zRmCruTWN\",style:{height:\"100%\",width:\"100%\"},variant:\"gxuFIA9JL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"110px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n79c9b-container\",layoutDependency:layoutDependency,layoutId:\"aRX4w06aW-container\",children:/*#__PURE__*/_jsx(IntegrationLogos,{height:\"100%\",id:\"aRX4w06aW\",layoutId:\"aRX4w06aW\",style:{height:\"100%\",width:\"100%\"},variant:\"IstMsIu6N\",width:\"100%\"})})})],speed:66,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jRWbj.framer-lj5cjo, .framer-jRWbj .framer-lj5cjo { display: block; }\",\".framer-jRWbj.framer-1ug4ntp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1040px; }\",\".framer-jRWbj .framer-16guz5u-container { flex: none; height: 60px; position: relative; width: 100%; }\",\".framer-jRWbj .framer-fwsv90-container { aspect-ratio: 5.172661870503597 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 311px; }\",\".framer-jRWbj .framer-1rbm5c2-container { aspect-ratio: 3.8 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 228px; }\",\".framer-jRWbj .framer-uxhdu7-container { aspect-ratio: 3.15 / 1; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 221px; }\",\".framer-jRWbj .framer-1idswoh-container { aspect-ratio: 4.185714285714286 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 251px; }\",\".framer-jRWbj .framer-thdtif-container { aspect-ratio: 1.425531914893617 / 1; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 100px; }\",\".framer-jRWbj .framer-9hsrn1-container { aspect-ratio: 3.5785714285714287 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 215px; }\",\".framer-jRWbj .framer-dmaw7b-container { aspect-ratio: 1.6666666666666667 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 100px; }\",\".framer-jRWbj .framer-3xs7er-container { aspect-ratio: 0.84 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 51px; }\",\".framer-jRWbj .framer-ala32g-container { aspect-ratio: 1.756218905472637 / 1; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 123px; }\",\".framer-jRWbj .framer-6p9rpt-container { aspect-ratio: 4.628571428571429 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 278px; }\",\".framer-jRWbj .framer-1yygk4i-container { aspect-ratio: 1.9432624113475176 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 117px; }\",\".framer-jRWbj .framer-1uz9p38-container { aspect-ratio: 2.757142857142857 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 166px; }\",\".framer-jRWbj .framer-w2hjtz-container { aspect-ratio: 3.692857142857143 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 222px; }\",\".framer-jRWbj .framer-1jq0j15-container { aspect-ratio: 3.257142857142857 / 1; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 228px; }\",\".framer-jRWbj .framer-phbivv-container { aspect-ratio: 2.914285714285714 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 175px; }\",\".framer-jRWbj .framer-xebt52-container { aspect-ratio: 7.75 / 1; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 388px; }\",\".framer-jRWbj .framer-13ib8t2-container { height: 60px; position: relative; width: 106px; }\",\".framer-jRWbj .framer-1n79c9b-container { height: 60px; position: relative; width: 110px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jRWbj.framer-1ug4ntp { gap: 0px; } .framer-jRWbj.framer-1ug4ntp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-jRWbj.framer-1ug4ntp > :first-child { margin-top: 0px; } .framer-jRWbj.framer-1ug4ntp > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 1040\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXGLY9JqoP=withCSS(Component,css,\"framer-jRWbj\");export default FramerXGLY9JqoP;FramerXGLY9JqoP.displayName=\"ticker-integrations\";FramerXGLY9JqoP.defaultProps={height:60,width:1040};addFonts(FramerXGLY9JqoP,[{explicitInter:true,fonts:[]},...IntegrationLogosFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXGLY9JqoP\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1040\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"60\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XGLY9JqoP.map"],"mappings":"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"}