{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/waSc3h29UIkdIsnc7u6N/Sx4R0dpTe6IueA6phZMP/YmoIkYgYP.js", "ssg:https://framerusercontent.com/modules/c5AFY2BRRsgTKOaBBynt/zZwH8juAv9bj0RMatio5/xDXhl5wSW.js", "ssg:https://framerusercontent.com/modules/YNvn0oBE9pR46K26IcED/Cv66yOWGYzZY1qketLgT/MCLBKy7sY.js", "ssg:https://framerusercontent.com/modules/WX78JyJDNXqlB9TdqBCb/GBLZKFC3x6F21Dymayci/ZaiLHxdgx.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"aUOQ9LuJ_\",\"GLhUWdZ0W\",\"yPvCkzSru\"];const serializationHash=\"framer-A2TYy\";const variantClassNames={aUOQ9LuJ_:\"framer-v-zp12th\",GLhUWdZ0W:\"framer-v-ajpv7d\",yPvCkzSru:\"framer-v-1ozais6\"};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={duration:0,type:\"tween\"};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={\"Plus Hover\":\"GLhUWdZ0W\",Minus:\"yPvCkzSru\",Plus:\"aUOQ9LuJ_\"};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:\"aUOQ9LuJ_\"};};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:\"aUOQ9LuJ_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"yPvCkzSru\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"yPvCkzSru\")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-zp12th\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"aUOQ9LuJ_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6d932154-9fa5-4789-a77f-5e5891064d83, rgb(16, 110, 252))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{GLhUWdZ0W:{\"--border-color\":\"rgba(81, 86, 90, 0)\",backgroundColor:\"rgb(0, 120, 255)\"},yPvCkzSru:{\"--border-color\":\"rgba(81, 86, 90, 0)\",backgroundColor:\"rgb(0, 120, 255)\"}},...addPropertyOverrides({GLhUWdZ0W:{\"data-framer-name\":\"Plus Hover\"},yPvCkzSru:{\"data-framer-name\":\"Minus\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-4b0x46\",\"data-framer-name\":\"SVG (Plus)\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WqWnuVV6s\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 6 2 L 6 6 M 6 6 L 6 10 M 6 6 L 2 6 M 6 6 L 10 6\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-6d932154-9fa5-4789-a77f-5e5891064d83, rgb(16, 110, 252)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12339883197,withExternalLayout:true,...addPropertyOverrides({GLhUWdZ0W:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 6 2 L 6 6 M 6 6 L 6 10 M 6 6 L 2 6 M 6 6 L 10 6\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;12&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10260135435}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-13s3ige\",\"data-framer-name\":\"SVG (Minus)\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"mPQXNQiyy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 2 6 L 10 6\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;12&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10681430789,withExternalLayout:true,...addPropertyOverrides({yPvCkzSru:{svgContentId:11548429862}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-A2TYy.framer-1edjewx, .framer-A2TYy .framer-1edjewx { display: block; }\",\".framer-A2TYy.framer-zp12th { height: 20px; overflow: hidden; position: relative; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-A2TYy .framer-4b0x46, .framer-A2TYy .framer-13s3ige { flex: none; height: 12px; left: calc(50.00000000000002% - 12px / 2); position: absolute; top: calc(50.00000000000002% - 12px / 2); width: 12px; }\",\".framer-A2TYy.framer-v-ajpv7d.framer-zp12th, .framer-A2TYy.framer-v-1ozais6.framer-zp12th { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); }\",'.framer-A2TYy[data-border=\"true\"]::after, .framer-A2TYy [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"GLhUWdZ0W\":{\"layout\":[\"fixed\",\"fixed\"]},\"yPvCkzSru\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYmoIkYgYP=withCSS(Component,css,\"framer-A2TYy\");export default FramerYmoIkYgYP;FramerYmoIkYgYP.displayName=\"Plus Minus Icon\";FramerYmoIkYgYP.defaultProps={height:20,width:20};addPropertyControls(FramerYmoIkYgYP,{variant:{options:[\"aUOQ9LuJ_\",\"GLhUWdZ0W\",\"yPvCkzSru\"],optionTitles:[\"Plus\",\"Plus Hover\",\"Minus\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerYmoIkYgYP,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYmoIkYgYP\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"20\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GLhUWdZ0W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yPvCkzSru\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"20\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YmoIkYgYP.map", "// Generated by Framer (51f36d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG1 from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import PlusMinusIcon from\"https://framerusercontent.com/modules/waSc3h29UIkdIsnc7u6N/Sx4R0dpTe6IueA6phZMP/YmoIkYgYP.js\";const SVG1Fonts=getFonts(SVG1);const PlusMinusIconFonts=getFonts(PlusMinusIcon);const PlusMinusIconControls=getPropertyControls(PlusMinusIcon);const cycleOrder=[\"vInRTDzNG\",\"iIIrpNbjI\"];const serializationHash=\"framer-IpeUG\";const variantClassNames={iIIrpNbjI:\"framer-v-snl751\",vInRTDzNG:\"framer-v-18os0j\"};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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={duration:0,type:\"tween\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Plus Hover\":\"GLhUWdZ0W\",Minus:\"yPvCkzSru\",Plus:\"aUOQ9LuJ_\"};const humanReadableVariantMap={Blue:\"vInRTDzNG\",Grey:\"iIIrpNbjI\"};const getProps=({answer,anwserFont,areaPadding,ear,heart,height,id,message,radius,showAnswer,star,variant1,width,...props})=>{var _ref,_ref1,_humanReadableEnumMap_variant1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7,_ref8;return{...props,BgAQWE9JZ:(_ref=message!==null&&message!==void 0?message:props.BgAQWE9JZ)!==null&&_ref!==void 0?_ref:\"What if I don't like it?\",btPQlyjzM:heart!==null&&heart!==void 0?heart:props.btPQlyjzM,bwekrMgqY:(_ref1=anwserFont!==null&&anwserFont!==void 0?anwserFont:props.bwekrMgqY)!==null&&_ref1!==void 0?_ref1:22,FP0sxvgeX:(_ref3=(_ref2=(_humanReadableEnumMap_variant1=humanReadableEnumMap[variant1])!==null&&_humanReadableEnumMap_variant1!==void 0?_humanReadableEnumMap_variant1:variant1)!==null&&_ref2!==void 0?_ref2:props.FP0sxvgeX)!==null&&_ref3!==void 0?_ref3:\"yPvCkzSru\",Ig9Oen9_Q:showAnswer!==null&&showAnswer!==void 0?showAnswer:props.Ig9Oen9_Q,ITXAzsZ7E:(_ref4=radius!==null&&radius!==void 0?radius:props.ITXAzsZ7E)!==null&&_ref4!==void 0?_ref4:\"24px\",q6b9pqvbo:(_ref5=answer!==null&&answer!==void 0?answer:props.q6b9pqvbo)!==null&&_ref5!==void 0?_ref5:\"Biz turli xil mahsulotlarni taklif qilamiz, jumladan, muzqaymoq, muzlatilgan chuchvara, tvorogdan tayyorlangan gazaklar, shokoladli yormalar va oldindan tayyorlangan kreplar.\",qcxv5MbC_:star!==null&&star!==void 0?star:props.qcxv5MbC_,variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"vInRTDzNG\",YhiVilvJy:(_ref7=areaPadding!==null&&areaPadding!==void 0?areaPadding:props.YhiVilvJy)!==null&&_ref7!==void 0?_ref7:\"12px 22px 12px 22px\",ZowNLHVI9:(_ref8=ear!==null&&ear!==void 0?ear:props.ZowNLHVI9)!==null&&_ref8!==void 0?_ref8: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,BgAQWE9JZ,ZowNLHVI9,btPQlyjzM,qcxv5MbC_,Ig9Oen9_Q,bwekrMgqY,YhiVilvJy,q6b9pqvbo,FP0sxvgeX,ITXAzsZ7E,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vInRTDzNG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapiswks5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Ig9Oen9_Q){const res=await Ig9Oen9_Q(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"iIIrpNbjI\")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-18os0j\",className,classNames),\"data-framer-name\":\"Blue\",layoutDependency:layoutDependency,layoutId:\"vInRTDzNG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--xaz9b4\":numberToPixelString(YhiVilvJy),backgroundColor:\"var(--token-6d932154-9fa5-4789-a77f-5e5891064d83, rgb(16, 110, 252))\",borderBottomLeftRadius:radiusForCorner(ITXAzsZ7E,3),borderBottomRightRadius:radiusForCorner(ITXAzsZ7E,2),borderTopLeftRadius:radiusForCorner(ITXAzsZ7E,0),borderTopRightRadius:radiusForCorner(ITXAzsZ7E,1),...style},variants:{iIIrpNbjI:{backgroundColor:\"rgb(225, 237, 255)\"}},...addPropertyOverrides({iIIrpNbjI:{\"data-framer-name\":\"Grey\",\"data-highlight\":true,onTap:onTapiswks5}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-bwekrMgqY-xDXhl5wSW) * 1px)\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"What if I don't like it?\"})}),className:\"framer-rxjeyg\",\"data-framer-name\":\"Text\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"yy9pRjmMI\",style:{\"--extracted-r6o4lv\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-bwekrMgqY-xDXhl5wSW\":bwekrMgqY},text:q6b9pqvbo,variants:{iIIrpNbjI:{\"--extracted-r6o4lv\":\"rgb(16, 110, 252)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iIIrpNbjI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-bwekrMgqY-xDXhl5wSW) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 110, 252))\"},children:\"What if I don't like it?\"})}),fonts:[\"GF;Roboto-700\"],text:BgAQWE9JZ}},baseVariant,gestureVariant)}),ZowNLHVI9&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sjlduh\",\"data-framer-name\":\"Ear\",layoutDependency:layoutDependency,layoutId:\"O_MWOIAH6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1i4iu1u\",\"data-framer-name\":\"SVG\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rEfiXopRO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 25\"><path d=\"M 0.005 0 L 11 0 L 11 8.5 C 11 12.071 11.092 20.714 17.005 24.643 C 12.571 24.643 1.854 21.786 0.005 16.071 C -0.007 16.071 0.005 0 0.005 0 Z\" fill=\"var(--token-6d932154-9fa5-4789-a77f-5e5891064d83, rgb(16, 110, 252)) /* {&quot;name&quot;:&quot;Blue&quot;} */\"></path></svg>',svgContentId:9046911286,withExternalLayout:true,...addPropertyOverrides({iIIrpNbjI:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 25\"><path d=\"M 17 0 L 6.005 0 L 6.005 8.5 C 6.005 12.071 5.913 20.714 0 24.643 C 4.434 24.643 15.151 21.786 17 16.071 C 17.012 16.071 17 0 17 0 Z\" fill=\"rgb(225, 237, 255)\"></path></svg>',svgContentId:11378095995}},baseVariant,gestureVariant)})}),btPQlyjzM&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dhpcgz-container\",layoutDependency:layoutDependency,layoutId:\"tzUuCrIS0-container\",style:{rotate:19},children:/*#__PURE__*/_jsx(SVG1,{customColor:\"rgb(255, 86, 121)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.4885 21.3725C21.0164 16.5927 23.1145 10.9028 21.5103 6.90294C20.7315 4.96087 19.0967 3.56916 17.1687 3.13926C15.4711 2.76077 13.6161 3.14222 11.9995 4.42553C10.3829 3.14222 8.52778 2.76077 6.83026 3.13927C4.9022 3.56917 3.26747 4.96089 2.48861 6.90295C0.884469 10.9029 2.98263 16.5927 11.5106 21.3725L11.9995 21.6466L12.4885 21.3725Z\" fill=\"black\"/> </svg>',description:\"\",height:\"100%\",id:\"tzUuCrIS0\",layoutId:\"tzUuCrIS0\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),qcxv5MbC_&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16yaolb-container\",layoutDependency:layoutDependency,layoutId:\"kTZ4tpiSx-container\",style:{rotate:-13},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG1,{customColor:\"rgb(254, 217, 94)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.9086 2.19626C13.1399 0.601248 10.857 0.601245 10.0883 2.19626L8.07325 6.37748C8.05819 6.40873 8.02531 6.43524 7.98153 6.44095L3.34253 7.04641C1.58779 7.27543 0.855254 9.43807 2.1633 10.6675L5.55689 13.8571C5.58454 13.8831 5.59438 13.9178 5.5885 13.9492L4.73655 18.5047C4.4065 20.2694 6.28023 21.5748 7.82594 20.7441L11.9383 18.5342C11.9755 18.5142 12.0214 18.5142 12.0585 18.5342L16.171 20.7441C17.7167 21.5748 19.5904 20.2694 19.2604 18.5047L18.4084 13.9492C18.4026 13.9178 18.4124 13.8831 18.44 13.8571L21.8336 10.6675C23.1417 9.43807 22.4091 7.27543 20.6544 7.04641L16.0154 6.44095C15.9716 6.43524 15.9387 6.40873 15.9237 6.37748L13.9086 2.19626Z\" fill=\"black\"/> </svg>',description:\"\",height:\"100%\",id:\"kTZ4tpiSx\",layoutId:\"kTZ4tpiSx\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ftz6p\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"Ll0F5MVqB\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",...addPropertyOverrides({iIIrpNbjI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||52.5)*.4992343032159267-10)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bk6ob9-container\",layoutDependency:layoutDependency,layoutId:\"oLpMPj7fP-container\",children:/*#__PURE__*/_jsx(PlusMinusIcon,{height:\"100%\",id:\"oLpMPj7fP\",layoutId:\"oLpMPj7fP\",style:{height:\"100%\",width:\"100%\"},variant:FP0sxvgeX,width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IpeUG.framer-1u7guv6, .framer-IpeUG .framer-1u7guv6 { display: block; }\",\".framer-IpeUG.framer-18os0j { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: var(--xaz9b4); position: relative; width: 1195px; }\",\".framer-IpeUG .framer-rxjeyg { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-IpeUG .framer-1sjlduh { align-content: center; align-items: center; bottom: -1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -6px; width: min-content; z-index: 1; }\",\".framer-IpeUG .framer-1i4iu1u { flex: none; height: 25px; position: relative; width: 17px; }\",\".framer-IpeUG .framer-dhpcgz-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: absolute; right: -4px; top: -11px; width: 28px; z-index: 1; }\",\".framer-IpeUG .framer-16yaolb-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: -16px; position: absolute; top: 50%; width: 28px; z-index: 1; }\",\".framer-IpeUG .framer-5ftz6p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: absolute; right: -32px; top: 50%; width: 32px; z-index: 1; }\",\".framer-IpeUG .framer-1bk6ob9-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IpeUG.framer-18os0j, .framer-IpeUG .framer-1sjlduh, .framer-IpeUG .framer-5ftz6p { gap: 0px; } .framer-IpeUG.framer-18os0j > *, .framer-IpeUG .framer-1sjlduh > *, .framer-IpeUG .framer-5ftz6p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-IpeUG.framer-18os0j > :first-child, .framer-IpeUG .framer-1sjlduh > :first-child, .framer-IpeUG .framer-5ftz6p > :first-child { margin-left: 0px; } .framer-IpeUG.framer-18os0j > :last-child, .framer-IpeUG .framer-1sjlduh > :last-child, .framer-IpeUG .framer-5ftz6p > :last-child { margin-right: 0px; } }\",\".framer-IpeUG.framer-v-snl751.framer-18os0j { width: 239px; }\",\".framer-IpeUG.framer-v-snl751 .framer-1sjlduh { bottom: -1px; left: -6px; right: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 81\n * @framerIntrinsicWidth 1195\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iIIrpNbjI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BgAQWE9JZ\":\"message\",\"ZowNLHVI9\":\"ear\",\"btPQlyjzM\":\"heart\",\"qcxv5MbC_\":\"star\",\"Ig9Oen9_Q\":\"showAnswer\",\"bwekrMgqY\":\"anwserFont\",\"YhiVilvJy\":\"areaPadding\",\"q6b9pqvbo\":\"answer\",\"FP0sxvgeX\":\"variant1\",\"ITXAzsZ7E\":\"radius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxDXhl5wSW=withCSS(Component,css,\"framer-IpeUG\");export default FramerxDXhl5wSW;FramerxDXhl5wSW.displayName=\"Message\";FramerxDXhl5wSW.defaultProps={height:81,width:1195};addPropertyControls(FramerxDXhl5wSW,{variant:{options:[\"vInRTDzNG\",\"iIIrpNbjI\"],optionTitles:[\"Blue\",\"Grey\"],title:\"Variant\",type:ControlType.Enum},BgAQWE9JZ:{defaultValue:\"What if I don't like it?\",displayTextArea:false,title:\"Message\",type:ControlType.String},ZowNLHVI9:{defaultValue:true,title:\"Ear\",type:ControlType.Boolean},btPQlyjzM:{defaultValue:false,title:\"Heart\",type:ControlType.Boolean},qcxv5MbC_:{defaultValue:false,title:\"Star\",type:ControlType.Boolean},Ig9Oen9_Q:{title:\"Show Answer\",type:ControlType.EventHandler},bwekrMgqY:{defaultValue:22,title:\"Anwser  font\",type:ControlType.Number},YhiVilvJy:{defaultValue:\"12px 22px 12px 22px\",title:\"Area padding\",type:ControlType.Padding},q6b9pqvbo:{defaultValue:\"Biz turli xil mahsulotlarni taklif qilamiz, jumladan, muzqaymoq, muzlatilgan chuchvara, tvorogdan tayyorlangan gazaklar, shokoladli yormalar va oldindan tayyorlangan kreplar.\",displayTextArea:false,title:\"Answer\",type:ControlType.String},FP0sxvgeX:(PlusMinusIconControls===null||PlusMinusIconControls===void 0?void 0:PlusMinusIconControls[\"variant\"])&&{...PlusMinusIconControls[\"variant\"],defaultValue:\"yPvCkzSru\",description:undefined,hidden:undefined,title:\"Variant\"},ITXAzsZ7E:{defaultValue:\"24px\",title:\"Radius\",type:ControlType.BorderRadius}});addFonts(FramerxDXhl5wSW,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Me4GZLCzYlKw.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmWUlvBh05IsDqlA.woff2\",weight:\"700\"}]},...SVG1Fonts,...PlusMinusIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxDXhl5wSW\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iIIrpNbjI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"81\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1195\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"BgAQWE9JZ\\\":\\\"message\\\",\\\"ZowNLHVI9\\\":\\\"ear\\\",\\\"btPQlyjzM\\\":\\\"heart\\\",\\\"qcxv5MbC_\\\":\\\"star\\\",\\\"Ig9Oen9_Q\\\":\\\"showAnswer\\\",\\\"bwekrMgqY\\\":\\\"anwserFont\\\",\\\"YhiVilvJy\\\":\\\"areaPadding\\\",\\\"q6b9pqvbo\\\":\\\"answer\\\",\\\"FP0sxvgeX\\\":\\\"variant1\\\",\\\"ITXAzsZ7E\\\":\\\"radius\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xDXhl5wSW.map", "// Generated by Framer (51f36d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Message from\"https://framerusercontent.com/modules/c5AFY2BRRsgTKOaBBynt/zZwH8juAv9bj0RMatio5/xDXhl5wSW.js\";const MessageFonts=getFonts(Message);const cycleOrder=[\"nFnkSEBsQ\",\"kKi1uMVlA\"];const serializationHash=\"framer-kcBix\";const variantClassNames={kKi1uMVlA:\"framer-v-wvu86h\",nFnkSEBsQ:\"framer-v-1y66v5g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.8,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Only Question\":\"nFnkSEBsQ\",\"Show Answer\":\"kKi1uMVlA\"};const getProps=({answer2,answerGap,anwserFont,areaPadding,click,ear,heart,height,id,paddingAnswer,paddingQuestion,question,radius,star,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_humanReadableVariantMap_props_variant,_ref7,_ref8,_ref9;return{...props,DCGdohF7W:(_ref=answer2!==null&&answer2!==void 0?answer2:props.DCGdohF7W)!==null&&_ref!==void 0?_ref:\"Biz turli xil mahsulotlarni taklif qilamiz, jumladan, muzqaymoq, muzlatilgan chuchvara, tvorogdan tayyorlangan gazaklar, shokoladli yormalar va oldindan tayyorlangan kreplar.\",GP_AYe5lG:heart!==null&&heart!==void 0?heart:props.GP_AYe5lG,H_cWVJZ_C:(_ref1=areaPadding!==null&&areaPadding!==void 0?areaPadding:props.H_cWVJZ_C)!==null&&_ref1!==void 0?_ref1:\"12px 22px 12px 22px\",L9YOErH9r:(_ref2=anwserFont!==null&&anwserFont!==void 0?anwserFont:props.L9YOErH9r)!==null&&_ref2!==void 0?_ref2:22,Nakweg8LV:(_ref3=paddingQuestion!==null&&paddingQuestion!==void 0?paddingQuestion:props.Nakweg8LV)!==null&&_ref3!==void 0?_ref3:\"0px 80px 0px 0px\",qc0l7nqoz:(_ref4=question!==null&&question!==void 0?question:props.qc0l7nqoz)!==null&&_ref4!==void 0?_ref4:\"What if I don't like it?\",rgvJ3rx1u:click!==null&&click!==void 0?click:props.rgvJ3rx1u,TU0PYkGJg:(_ref5=paddingAnswer!==null&&paddingAnswer!==void 0?paddingAnswer:props.TU0PYkGJg)!==null&&_ref5!==void 0?_ref5:\"0px 0px 0px 80px\",U2IrYA1fw:(_ref6=ear!==null&&ear!==void 0?ear:props.U2IrYA1fw)!==null&&_ref6!==void 0?_ref6:true,variant:(_ref7=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref7!==void 0?_ref7:\"nFnkSEBsQ\",VrHEX3mH9:(_ref8=radius!==null&&radius!==void 0?radius:props.VrHEX3mH9)!==null&&_ref8!==void 0?_ref8:\"24px\",WwQohTRDI:star!==null&&star!==void 0?star:props.WwQohTRDI,Xq5gjbIIS:(_ref9=answerGap!==null&&answerGap!==void 0?answerGap:props.Xq5gjbIIS)!==null&&_ref9!==void 0?_ref9:16};};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,qc0l7nqoz,U2IrYA1fw,GP_AYe5lG,WwQohTRDI,Xq5gjbIIS,L9YOErH9r,VrHEX3mH9,H_cWVJZ_C,Nakweg8LV,TU0PYkGJg,rgvJ3rx1u,DCGdohF7W,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nFnkSEBsQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1n7vs0m=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(rgvJ3rx1u){const res=await rgvJ3rx1u(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"kKi1uMVlA\")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-1y66v5g\",className,classNames),\"data-framer-name\":\"Only Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nFnkSEBsQ\",onTap:onTap1n7vs0m,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--16u2lwo\":Xq5gjbIIS,...style},...addPropertyOverrides({kKi1uMVlA:{\"data-framer-name\":\"Show Answer\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1obahpw\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"i9zUQKfdA\",style:{\"--j5hd75\":numberToPixelString(Nakweg8LV)},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - ${Nakweg8LV*2}px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hio0qz-container\",layoutDependency:layoutDependency,layoutId:\"XrrKTbN4f-container\",children:/*#__PURE__*/_jsx(Message,{BgAQWE9JZ:qc0l7nqoz,btPQlyjzM:GP_AYe5lG,bwekrMgqY:L9YOErH9r,FP0sxvgeX:\"aUOQ9LuJ_\",height:\"100%\",id:\"XrrKTbN4f\",ITXAzsZ7E:numberToPixelString(VrHEX3mH9),layoutId:\"XrrKTbN4f\",q6b9pqvbo:\"Biz turli xil mahsulotlarni taklif qilamiz, jumladan, muzqaymoq, muzlatilgan chuchvara, tvorogdan tayyorlangan gazaklar, shokoladli yormalar va oldindan tayyorlangan kreplar.\",qcxv5MbC_:WwQohTRDI,style:{width:\"100%\"},variant:\"iIIrpNbjI\",width:\"100%\",YhiVilvJy:numberToPixelString(H_cWVJZ_C),ZowNLHVI9:U2IrYA1fw,...addPropertyOverrides({kKi1uMVlA:{FP0sxvgeX:\"yPvCkzSru\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-195yhma\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"yjDc6nci2\",style:{\"--1art0p7\":numberToPixelString(TU0PYkGJg),filter:\"blur(8px)\",opacity:0,scale:.9,WebkitFilter:\"blur(8px)\"},variants:{kKi1uMVlA:{filter:\"blur(0px)\",opacity:1,scale:1,WebkitFilter:\"blur(0px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:\"70%\",...addPropertyOverrides({kKi1uMVlA:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - ${TU0PYkGJg*2}px, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6iz7xz-container\",layoutDependency:layoutDependency,layoutId:\"fHN8rUIhC-container\",children:/*#__PURE__*/_jsx(Message,{BgAQWE9JZ:\"What if I don't like it?\",btPQlyjzM:false,bwekrMgqY:L9YOErH9r,FP0sxvgeX:\"yPvCkzSru\",height:\"100%\",id:\"fHN8rUIhC\",ITXAzsZ7E:numberToPixelString(VrHEX3mH9),layoutId:\"fHN8rUIhC\",q6b9pqvbo:DCGdohF7W,qcxv5MbC_:false,style:{maxWidth:\"100%\"},variant:\"vInRTDzNG\",width:\"100%\",YhiVilvJy:numberToPixelString(H_cWVJZ_C),ZowNLHVI9:true,...addPropertyOverrides({kKi1uMVlA:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kcBix.framer-1fpt770, .framer-kcBix .framer-1fpt770 { display: block; }\",\".framer-kcBix.framer-1y66v5g { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 319px; }\",\".framer-kcBix .framer-1obahpw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: var(--j5hd75); position: relative; width: 100%; z-index: 2; }\",\".framer-kcBix .framer-hio0qz-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-kcBix .framer-195yhma { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-end; left: 0px; overflow: visible; padding: var(--1art0p7); pointer-events: none; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-kcBix .framer-6iz7xz-container { flex: none; height: auto; max-width: 70%; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kcBix.framer-1y66v5g, .framer-kcBix .framer-1obahpw, .framer-kcBix .framer-195yhma { gap: 0px; } .framer-kcBix.framer-1y66v5g > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-kcBix.framer-1y66v5g > :first-child { margin-top: 0px; } .framer-kcBix.framer-1y66v5g > :last-child { margin-bottom: 0px; } .framer-kcBix .framer-1obahpw > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-kcBix .framer-1obahpw > :first-child, .framer-kcBix .framer-195yhma > :first-child { margin-left: 0px; } .framer-kcBix .framer-1obahpw > :last-child, .framer-kcBix .framer-195yhma > :last-child { margin-right: 0px; } .framer-kcBix .framer-195yhma > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-kcBix.framer-v-wvu86h.framer-1y66v5g { gap: calc(max(0, var(--16u2lwo)) * 1px); }\",\".framer-kcBix.framer-v-wvu86h .framer-1obahpw { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-kcBix.framer-v-wvu86h .framer-195yhma { left: unset; position: relative; top: unset; }\",\".framer-kcBix.framer-v-wvu86h .framer-6iz7xz-container { flex: 1 0 0px; max-width: unset; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kcBix.framer-v-wvu86h.framer-1y66v5g, .framer-kcBix.framer-v-wvu86h .framer-1obahpw { gap: 0px; } .framer-kcBix.framer-v-wvu86h.framer-1y66v5g > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--16u2lwo)) * 1px) / 2); margin-top: calc(calc(max(0, var(--16u2lwo)) * 1px) / 2); } .framer-kcBix.framer-v-wvu86h.framer-1y66v5g > :first-child, .framer-kcBix.framer-v-wvu86h .framer-1obahpw > :first-child { margin-top: 0px; } .framer-kcBix.framer-v-wvu86h.framer-1y66v5g > :last-child, .framer-kcBix.framer-v-wvu86h .framer-1obahpw > :last-child { margin-bottom: 0px; } .framer-kcBix.framer-v-wvu86h .framer-1obahpw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52.5\n * @framerIntrinsicWidth 319\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kKi1uMVlA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"qc0l7nqoz\":\"question\",\"U2IrYA1fw\":\"ear\",\"GP_AYe5lG\":\"heart\",\"WwQohTRDI\":\"star\",\"Xq5gjbIIS\":\"answerGap\",\"L9YOErH9r\":\"anwserFont\",\"VrHEX3mH9\":\"radius\",\"H_cWVJZ_C\":\"areaPadding\",\"Nakweg8LV\":\"paddingQuestion\",\"TU0PYkGJg\":\"paddingAnswer\",\"rgvJ3rx1u\":\"click\",\"DCGdohF7W\":\"answer2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMCLBKy7sY=withCSS(Component,css,\"framer-kcBix\");export default FramerMCLBKy7sY;FramerMCLBKy7sY.displayName=\"Question Row\";FramerMCLBKy7sY.defaultProps={height:52.5,width:319};addPropertyControls(FramerMCLBKy7sY,{variant:{options:[\"nFnkSEBsQ\",\"kKi1uMVlA\"],optionTitles:[\"Only Question\",\"Show Answer\"],title:\"Variant\",type:ControlType.Enum},qc0l7nqoz:{defaultValue:\"What if I don't like it?\",displayTextArea:false,title:\"Question\",type:ControlType.String},U2IrYA1fw:{defaultValue:true,title:\"Ear\",type:ControlType.Boolean},GP_AYe5lG:{defaultValue:false,title:\"Heart\",type:ControlType.Boolean},WwQohTRDI:{defaultValue:false,title:\"Star\",type:ControlType.Boolean},Xq5gjbIIS:{defaultValue:16,min:0,title:\"Answer gap\",type:ControlType.Number},L9YOErH9r:{defaultValue:22,title:\"Anwser Font\",type:ControlType.Number},VrHEX3mH9:{defaultValue:\"24px\",title:\"Radius\",type:ControlType.BorderRadius},H_cWVJZ_C:{defaultValue:\"12px 22px 12px 22px\",title:\"Area Padding\",type:ControlType.Padding},Nakweg8LV:{defaultValue:\"0px 80px 0px 0px\",title:\"Padding question\",type:ControlType.Padding},TU0PYkGJg:{defaultValue:\"0px 0px 0px 80px\",title:\"Padding answer\",type:ControlType.Padding},rgvJ3rx1u:{title:\"Click\",type:ControlType.EventHandler},DCGdohF7W:{defaultValue:\"Biz turli xil mahsulotlarni taklif qilamiz, jumladan, muzqaymoq, muzlatilgan chuchvara, tvorogdan tayyorlangan gazaklar, shokoladli yormalar va oldindan tayyorlangan kreplar.\",displayTextArea:false,title:\"Answer 2\",type:ControlType.String}});addFonts(FramerMCLBKy7sY,[{explicitInter:true,fonts:[]},...MessageFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMCLBKy7sY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kKi1uMVlA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"319\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"52.5\",\"framerVariables\":\"{\\\"qc0l7nqoz\\\":\\\"question\\\",\\\"U2IrYA1fw\\\":\\\"ear\\\",\\\"GP_AYe5lG\\\":\\\"heart\\\",\\\"WwQohTRDI\\\":\\\"star\\\",\\\"Xq5gjbIIS\\\":\\\"answerGap\\\",\\\"L9YOErH9r\\\":\\\"anwserFont\\\",\\\"VrHEX3mH9\\\":\\\"radius\\\",\\\"H_cWVJZ_C\\\":\\\"areaPadding\\\",\\\"Nakweg8LV\\\":\\\"paddingQuestion\\\",\\\"TU0PYkGJg\\\":\\\"paddingAnswer\\\",\\\"rgvJ3rx1u\\\":\\\"click\\\",\\\"DCGdohF7W\\\":\\\"answer2\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (51f36d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import QuestionRow from\"https://framerusercontent.com/modules/YNvn0oBE9pR46K26IcED/Cv66yOWGYzZY1qketLgT/MCLBKy7sY.js\";const QuestionRowFonts=getFonts(QuestionRow);const cycleOrder=[\"JBqMQN2vN\",\"IdemBiNMd\",\"ItngQM8nw\",\"jGRYIkXpW\",\"wC0aX4Lo7\"];const serializationHash=\"framer-YpzYp\";const variantClassNames={IdemBiNMd:\"framer-v-1u6o15k\",ItngQM8nw:\"framer-v-1oy6yif\",JBqMQN2vN:\"framer-v-1wbqrx4\",jGRYIkXpW:\"framer-v-1749n6i\",wC0aX4Lo7:\"framer-v-pzepba\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.8,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"0\":\"wC0aX4Lo7\",\"1\":\"JBqMQN2vN\",\"2\":\"IdemBiNMd\",\"3\":\"ItngQM8nw\",\"4\":\"jGRYIkXpW\"};const getProps=({answer01,answer02,answer03,answer04,answerGap,anwserFont,areaPadding,descriptionSize,height,id,mainGap,paddingAnswer,paddingQuestion2,question01,question02,question03,question04,radius,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_ref9,_ref10,_ref11,_humanReadableVariantMap_props_variant,_ref12,_ref13,_ref14,_ref15,_ref16,_ref17;return{...props,C6Iix7UfW:(_ref=radius!==null&&radius!==void 0?radius:props.C6Iix7UfW)!==null&&_ref!==void 0?_ref:\"24px\",F5e109NrW:(_ref1=answer04!==null&&answer04!==void 0?answer04:props.F5e109NrW)!==null&&_ref1!==void 0?_ref1:\"Ha, bizda doimiy ravishda chegirmalar va aksiyalar o'tkaziladi. Eng so'nggi yangiliklar va takliflar uchun bizning saytimizni kuzatib boring.\",hn93igAQG:(_ref2=paddingQuestion2!==null&&paddingQuestion2!==void 0?paddingQuestion2:props.hn93igAQG)!==null&&_ref2!==void 0?_ref2:\"0px\",L7I0pTXUO:(_ref3=answer01!==null&&answer01!==void 0?answer01:props.L7I0pTXUO)!==null&&_ref3!==void 0?_ref3:\"Barcha mahsulotlarimiz yuqori sifat va halol sertifikatiga ega, hamda barcha talab va standartlarga mos keladi.\",mff7eSkX6:(_ref4=answer03!==null&&answer03!==void 0?answer03:props.mff7eSkX6)!==null&&_ref4!==void 0?_ref4:\"Mahsulotlarimiz tez va ishonchli yetkazib berish orqali taqdim etiladi. Yetkazib berish shartlari va muddati haqida batafsil ma'lumotni saytimizda topishingiz mumkin.\",n0CAhdsJv:(_ref5=question01!==null&&question01!==void 0?question01:props.n0CAhdsJv)!==null&&_ref5!==void 0?_ref5:\"MUSA SERVIS qanday mahsulotlarni taklif qiladi?\",OUftEjmt8:(_ref6=descriptionSize!==null&&descriptionSize!==void 0?descriptionSize:props.OUftEjmt8)!==null&&_ref6!==void 0?_ref6:18,qEhgdoyPi:(_ref7=mainGap!==null&&mainGap!==void 0?mainGap:props.qEhgdoyPi)!==null&&_ref7!==void 0?_ref7:16,SUMcbcmqa:(_ref8=question03!==null&&question03!==void 0?question03:props.SUMcbcmqa)!==null&&_ref8!==void 0?_ref8:\"Mahsulotlar qanday qilib yetkazib beriladi?\",tUmCxPiop:(_ref9=answer02!==null&&answer02!==void 0?answer02:props.tUmCxPiop)!==null&&_ref9!==void 0?_ref9:\"Siz bizning veb-saytimiz orqali yoki telefon orqali buyurtma bera olasiz. Mijozlarga xizmat ko'rsatish bo'yicha mutaxassislarimiz sizga yordam berishadi.\",UbyDZb5Eh:(_ref10=anwserFont!==null&&anwserFont!==void 0?anwserFont:props.UbyDZb5Eh)!==null&&_ref10!==void 0?_ref10:18,UomDEVkSM:(_ref11=question04!==null&&question04!==void 0?question04:props.UomDEVkSM)!==null&&_ref11!==void 0?_ref11:\"Kompaniyada chegirmalar va aksiyalar bormi?\",variant:(_ref12=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref12!==void 0?_ref12:\"JBqMQN2vN\",vx5LVag66:(_ref13=question02!==null&&question02!==void 0?question02:props.vx5LVag66)!==null&&_ref13!==void 0?_ref13:\"Muzqaymoqlarni qanday qilib buyurtma qilish mumkin? \",X9Jr5pdKM:(_ref14=paddingAnswer!==null&&paddingAnswer!==void 0?paddingAnswer:props.X9Jr5pdKM)!==null&&_ref14!==void 0?_ref14:\"0px 0px 0px 80px\",YnzyJbjt8:(_ref15=areaPadding!==null&&areaPadding!==void 0?areaPadding:props.YnzyJbjt8)!==null&&_ref15!==void 0?_ref15:\"12px 22px 12px 22px\",yuHoseYjZ:(_ref16=title!==null&&title!==void 0?title:props.yuHoseYjZ)!==null&&_ref16!==void 0?_ref16:\"Tez-tez beriladigan savollar\",zNRVPkjNZ:(_ref17=answerGap!==null&&answerGap!==void 0?answerGap:props.zNRVPkjNZ)!==null&&_ref17!==void 0?_ref17:16};};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,zNRVPkjNZ,UbyDZb5Eh,OUftEjmt8,C6Iix7UfW,YnzyJbjt8,hn93igAQG,X9Jr5pdKM,qEhgdoyPi,yuHoseYjZ,n0CAhdsJv,L7I0pTXUO,vx5LVag66,tUmCxPiop,SUMcbcmqa,mff7eSkX6,UomDEVkSM,F5e109NrW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JBqMQN2vN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const rgvJ3rx1u1u5oaml=activeVariantCallback(async(...args)=>{setVariant(\"wC0aX4Lo7\");});const rgvJ3rx1u1nihs1n=activeVariantCallback(async(...args)=>{setVariant(\"JBqMQN2vN\");});const rgvJ3rx1u13pmtms=activeVariantCallback(async(...args)=>{setVariant(\"IdemBiNMd\");});const rgvJ3rx1u1wih5jn=activeVariantCallback(async(...args)=>{setVariant(\"ItngQM8nw\");});const rgvJ3rx1u1uv137u=activeVariantCallback(async(...args)=>{setVariant(\"jGRYIkXpW\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1wbqrx4\",className,classNames),\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"JBqMQN2vN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1c3l111\":qEhgdoyPi,...style},...addPropertyOverrides({IdemBiNMd:{\"data-framer-name\":\"2\"},ItngQM8nw:{\"data-framer-name\":\"3\"},jGRYIkXpW:{\"data-framer-name\":\"4\"},wC0aX4Lo7:{\"data-framer-name\":\"0\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j596r5\",\"data-framer-name\":\"Timestamp\",layoutDependency:layoutDependency,layoutId:\"Xg8L6JfdP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-OUftEjmt8-ZaiLHxdgx) * 1px)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-82b5832e-a0cf-4abf-84b4-daf77b132a71, rgb(81, 86, 90)))\"},children:\"Tez-tez beriladigan savollar\"})}),className:\"framer-qv4bbs\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"r7gu8HmXM\",style:{\"--extracted-r6o4lv\":\"var(--token-82b5832e-a0cf-4abf-84b4-daf77b132a71, rgb(81, 86, 90))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-OUftEjmt8-ZaiLHxdgx\":OUftEjmt8},text:yuHoseYjZ,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-412jpw-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"deCeQBAU8-container\",name:\"1\",children:/*#__PURE__*/_jsx(QuestionRow,{DCGdohF7W:L7I0pTXUO,GP_AYe5lG:false,H_cWVJZ_C:numberToPixelString(YnzyJbjt8),height:\"100%\",id:\"deCeQBAU8\",L9YOErH9r:UbyDZb5Eh,layoutId:\"deCeQBAU8\",Nakweg8LV:numberToPixelString(hn93igAQG),name:\"1\",qc0l7nqoz:n0CAhdsJv,rgvJ3rx1u:rgvJ3rx1u1u5oaml,style:{width:\"100%\"},TU0PYkGJg:numberToPixelString(X9Jr5pdKM),U2IrYA1fw:false,variant:\"kKi1uMVlA\",VrHEX3mH9:numberToPixelString(C6Iix7UfW),width:\"100%\",WwQohTRDI:false,Xq5gjbIIS:zNRVPkjNZ,...addPropertyOverrides({IdemBiNMd:{rgvJ3rx1u:rgvJ3rx1u1nihs1n,variant:\"nFnkSEBsQ\"},ItngQM8nw:{rgvJ3rx1u:rgvJ3rx1u1nihs1n,variant:\"nFnkSEBsQ\"},jGRYIkXpW:{variant:\"nFnkSEBsQ\"},wC0aX4Lo7:{rgvJ3rx1u:rgvJ3rx1u1nihs1n,variant:\"nFnkSEBsQ\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-epu9zt-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"PFa9tpbzE-container\",name:\"2\",children:/*#__PURE__*/_jsx(QuestionRow,{DCGdohF7W:tUmCxPiop,GP_AYe5lG:false,H_cWVJZ_C:numberToPixelString(YnzyJbjt8),height:\"100%\",id:\"PFa9tpbzE\",L9YOErH9r:UbyDZb5Eh,layoutId:\"PFa9tpbzE\",Nakweg8LV:numberToPixelString(hn93igAQG),name:\"2\",qc0l7nqoz:vx5LVag66,rgvJ3rx1u:rgvJ3rx1u13pmtms,style:{width:\"100%\"},TU0PYkGJg:numberToPixelString(X9Jr5pdKM),U2IrYA1fw:false,variant:\"nFnkSEBsQ\",VrHEX3mH9:numberToPixelString(C6Iix7UfW),width:\"100%\",WwQohTRDI:false,Xq5gjbIIS:zNRVPkjNZ,...addPropertyOverrides({IdemBiNMd:{rgvJ3rx1u:rgvJ3rx1u1u5oaml,variant:\"kKi1uMVlA\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-twe4kh-container\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"lAufDqNzh-container\",name:\"3\",children:/*#__PURE__*/_jsx(QuestionRow,{DCGdohF7W:SUMcbcmqa,GP_AYe5lG:false,H_cWVJZ_C:numberToPixelString(YnzyJbjt8),height:\"100%\",id:\"lAufDqNzh\",L9YOErH9r:UbyDZb5Eh,layoutId:\"lAufDqNzh\",Nakweg8LV:numberToPixelString(hn93igAQG),name:\"3\",qc0l7nqoz:SUMcbcmqa,rgvJ3rx1u:rgvJ3rx1u1wih5jn,style:{width:\"100%\"},TU0PYkGJg:numberToPixelString(X9Jr5pdKM),U2IrYA1fw:false,variant:\"nFnkSEBsQ\",VrHEX3mH9:numberToPixelString(C6Iix7UfW),width:\"100%\",WwQohTRDI:false,Xq5gjbIIS:zNRVPkjNZ,...addPropertyOverrides({ItngQM8nw:{DCGdohF7W:mff7eSkX6,rgvJ3rx1u:rgvJ3rx1u1u5oaml,variant:\"kKi1uMVlA\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ztiuh-container\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"t9Uvq2FhQ-container\",name:\"4\",children:/*#__PURE__*/_jsx(QuestionRow,{DCGdohF7W:F5e109NrW,GP_AYe5lG:false,H_cWVJZ_C:numberToPixelString(YnzyJbjt8),height:\"100%\",id:\"t9Uvq2FhQ\",L9YOErH9r:UbyDZb5Eh,layoutId:\"t9Uvq2FhQ\",Nakweg8LV:numberToPixelString(hn93igAQG),name:\"4\",qc0l7nqoz:UomDEVkSM,rgvJ3rx1u:rgvJ3rx1u1uv137u,style:{width:\"100%\"},TU0PYkGJg:numberToPixelString(X9Jr5pdKM),U2IrYA1fw:false,variant:\"nFnkSEBsQ\",VrHEX3mH9:numberToPixelString(C6Iix7UfW),width:\"100%\",WwQohTRDI:false,Xq5gjbIIS:zNRVPkjNZ,...addPropertyOverrides({jGRYIkXpW:{rgvJ3rx1u:rgvJ3rx1u1u5oaml,variant:\"kKi1uMVlA\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YpzYp.framer-ai4uad, .framer-YpzYp .framer-ai4uad { display: block; }\",\".framer-YpzYp.framer-1wbqrx4 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--1c3l111)) * 1px); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-YpzYp .framer-1j596r5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 22px 0px 22px; position: relative; width: 490px; }\",\".framer-YpzYp .framer-qv4bbs { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-YpzYp .framer-412jpw-container, .framer-YpzYp .framer-epu9zt-container, .framer-YpzYp .framer-twe4kh-container, .framer-YpzYp .framer-14ztiuh-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YpzYp.framer-1wbqrx4, .framer-YpzYp .framer-1j596r5 { gap: 0px; } .framer-YpzYp.framer-1wbqrx4 > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--1c3l111)) * 1px) / 2); margin-top: calc(calc(max(0, var(--1c3l111)) * 1px) / 2); } .framer-YpzYp.framer-1wbqrx4 > :first-child, .framer-YpzYp .framer-1j596r5 > :first-child { margin-top: 0px; } .framer-YpzYp.framer-1wbqrx4 > :last-child, .framer-YpzYp .framer-1j596r5 > :last-child { margin-bottom: 0px; } .framer-YpzYp .framer-1j596r5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 387\n * @framerIntrinsicWidth 490\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"IdemBiNMd\":{\"layout\":[\"auto\",\"auto\"]},\"ItngQM8nw\":{\"layout\":[\"auto\",\"auto\"]},\"jGRYIkXpW\":{\"layout\":[\"auto\",\"auto\"]},\"wC0aX4Lo7\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"zNRVPkjNZ\":\"answerGap\",\"UbyDZb5Eh\":\"anwserFont\",\"OUftEjmt8\":\"descriptionSize\",\"C6Iix7UfW\":\"radius\",\"YnzyJbjt8\":\"areaPadding\",\"hn93igAQG\":\"paddingQuestion2\",\"X9Jr5pdKM\":\"paddingAnswer\",\"qEhgdoyPi\":\"mainGap\",\"yuHoseYjZ\":\"title\",\"n0CAhdsJv\":\"question01\",\"L7I0pTXUO\":\"answer01\",\"vx5LVag66\":\"question02\",\"tUmCxPiop\":\"answer02\",\"SUMcbcmqa\":\"question03\",\"mff7eSkX6\":\"answer03\",\"UomDEVkSM\":\"question04\",\"F5e109NrW\":\"answer04\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZaiLHxdgx=withCSS(Component,css,\"framer-YpzYp\");export default FramerZaiLHxdgx;FramerZaiLHxdgx.displayName=\"FAQ\";FramerZaiLHxdgx.defaultProps={height:387,width:490};addPropertyControls(FramerZaiLHxdgx,{variant:{options:[\"JBqMQN2vN\",\"IdemBiNMd\",\"ItngQM8nw\",\"jGRYIkXpW\",\"wC0aX4Lo7\"],optionTitles:[\"1\",\"2\",\"3\",\"4\",\"0\"],title:\"Variant\",type:ControlType.Enum},zNRVPkjNZ:{defaultValue:16,min:0,title:\"Answer Gap\",type:ControlType.Number},UbyDZb5Eh:{defaultValue:18,title:\"Anwser Font\",type:ControlType.Number},OUftEjmt8:{defaultValue:18,title:\"Description size\",type:ControlType.Number},C6Iix7UfW:{defaultValue:\"24px\",title:\"Radius\",type:ControlType.BorderRadius},YnzyJbjt8:{defaultValue:\"12px 22px 12px 22px\",title:\"Area Padding\",type:ControlType.Padding},hn93igAQG:{defaultValue:\"0px\",title:\"Padding Question 2\",type:ControlType.Padding},X9Jr5pdKM:{defaultValue:\"0px 0px 0px 80px\",title:\"Padding Answer\",type:ControlType.Padding},qEhgdoyPi:{defaultValue:16,min:0,title:\"Main gap\",type:ControlType.Number},yuHoseYjZ:{defaultValue:\"Tez-tez beriladigan savollar\",displayTextArea:false,title:\"Title\",type:ControlType.String},n0CAhdsJv:{defaultValue:\"MUSA SERVIS qanday mahsulotlarni taklif qiladi?\",displayTextArea:false,title:\"Question 01\",type:ControlType.String},L7I0pTXUO:{defaultValue:\"Barcha mahsulotlarimiz yuqori sifat va halol sertifikatiga ega, hamda barcha talab va standartlarga mos keladi.\",displayTextArea:false,title:\"Answer 01\",type:ControlType.String},vx5LVag66:{defaultValue:\"Muzqaymoqlarni qanday qilib buyurtma qilish mumkin? \",displayTextArea:false,title:\"Question 02\",type:ControlType.String},tUmCxPiop:{defaultValue:\"Siz bizning veb-saytimiz orqali yoki telefon orqali buyurtma bera olasiz. Mijozlarga xizmat ko'rsatish bo'yicha mutaxassislarimiz sizga yordam berishadi.\",displayTextArea:false,title:\"Answer 02\",type:ControlType.String},SUMcbcmqa:{defaultValue:\"Mahsulotlar qanday qilib yetkazib beriladi?\",displayTextArea:false,title:\"Question 03\",type:ControlType.String},mff7eSkX6:{defaultValue:\"Mahsulotlarimiz tez va ishonchli yetkazib berish orqali taqdim etiladi. Yetkazib berish shartlari va muddati haqida batafsil ma'lumotni saytimizda topishingiz mumkin.\",displayTextArea:false,title:\"Answer 03\",type:ControlType.String},UomDEVkSM:{defaultValue:\"Kompaniyada chegirmalar va aksiyalar bormi?\",displayTextArea:false,title:\"Question 04\",type:ControlType.String},F5e109NrW:{defaultValue:\"Ha, bizda doimiy ravishda chegirmalar va aksiyalar o'tkaziladi. Eng so'nggi yangiliklar va takliflar uchun bizning saytimizni kuzatib boring.\",displayTextArea:false,title:\"Answer 04\",type:ControlType.String}});addFonts(FramerZaiLHxdgx,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Me4GZLCzYlKw.woff2\",weight:\"400\"}]},...QuestionRowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZaiLHxdgx\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IdemBiNMd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ItngQM8nw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jGRYIkXpW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wC0aX4Lo7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"490\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"zNRVPkjNZ\\\":\\\"answerGap\\\",\\\"UbyDZb5Eh\\\":\\\"anwserFont\\\",\\\"OUftEjmt8\\\":\\\"descriptionSize\\\",\\\"C6Iix7UfW\\\":\\\"radius\\\",\\\"YnzyJbjt8\\\":\\\"areaPadding\\\",\\\"hn93igAQG\\\":\\\"paddingQuestion2\\\",\\\"X9Jr5pdKM\\\":\\\"paddingAnswer\\\",\\\"qEhgdoyPi\\\":\\\"mainGap\\\",\\\"yuHoseYjZ\\\":\\\"title\\\",\\\"n0CAhdsJv\\\":\\\"question01\\\",\\\"L7I0pTXUO\\\":\\\"answer01\\\",\\\"vx5LVag66\\\":\\\"question02\\\",\\\"tUmCxPiop\\\":\\\"answer02\\\",\\\"SUMcbcmqa\\\":\\\"question03\\\",\\\"mff7eSkX6\\\":\\\"answer03\\\",\\\"UomDEVkSM\\\":\\\"question04\\\",\\\"F5e109NrW\\\":\\\"answer04\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"387\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZaiLHxdgx.map"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerYmoIkYgYP", "withCSS", "YmoIkYgYP_default", "addPropertyControls", "ControlType", "addFonts", "SVG1Fonts", "getFonts", "SVG_Prod_default", "PlusMinusIconFonts", "YmoIkYgYP_default", "PlusMinusIconControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "radiusForCorner", "cornerIndex", "segments", "transition1", "transformTemplate1", "_", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "answer", "anwserFont", "areaPadding", "ear", "heart", "height", "id", "message", "radius", "showAnswer", "star", "variant1", "width", "props", "_ref", "_ref1", "_humanReadableEnumMap_variant1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "_ref8", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BgAQWE9JZ", "ZowNLHVI9", "btPQlyjzM", "qcxv5MbC_", "Ig9Oen9_Q", "bwekrMgqY", "YhiVilvJy", "q6b9pqvbo", "FP0sxvgeX", "ITXAzsZ7E", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapiswks5", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "ComponentViewportProvider", "css", "FramerxDXhl5wSW", "withCSS", "xDXhl5wSW_default", "addPropertyControls", "ControlType", "addFonts", "MessageFonts", "getFonts", "xDXhl5wSW_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer2", "answerGap", "anwserFont", "areaPadding", "click", "ear", "heart", "height", "id", "paddingAnswer", "paddingQuestion", "question", "radius", "star", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_humanReadableVariantMap_props_variant", "_ref7", "_ref8", "_ref9", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qc0l7nqoz", "U2IrYA1fw", "GP_AYe5lG", "WwQohTRDI", "Xq5gjbIIS", "L9YOErH9r", "VrHEX3mH9", "H_cWVJZ_C", "Nakweg8LV", "TU0PYkGJg", "rgvJ3rx1u", "DCGdohF7W", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1n7vs0m", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerMCLBKy7sY", "withCSS", "MCLBKy7sY_default", "addPropertyControls", "ControlType", "addFonts", "QuestionRowFonts", "getFonts", "MCLBKy7sY_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer01", "answer02", "answer03", "answer04", "answerGap", "anwserFont", "areaPadding", "descriptionSize", "height", "id", "mainGap", "paddingAnswer", "paddingQuestion2", "question01", "question02", "question03", "question04", "radius", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_ref9", "_ref10", "_ref11", "_humanReadableVariantMap_props_variant", "_ref12", "_ref13", "_ref14", "_ref15", "_ref16", "_ref17", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zNRVPkjNZ", "UbyDZb5Eh", "OUftEjmt8", "C6Iix7UfW", "YnzyJbjt8", "hn93igAQG", "X9Jr5pdKM", "qEhgdoyPi", "yuHoseYjZ", "n0CAhdsJv", "L7I0pTXUO", "vx5LVag66", "tUmCxPiop", "SUMcbcmqa", "mff7eSkX6", "UomDEVkSM", "F5e109NrW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "rgvJ3rx1u1u5oaml", "args", "rgvJ3rx1u1nihs1n", "rgvJ3rx1u13pmtms", "rgvJ3rx1u1wih5jn", "rgvJ3rx1u1uv137u", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerZaiLHxdgx", "withCSS", "ZaiLHxdgx_default", "addPropertyControls", "ControlType", "addFonts"]
}
