{"version":3,"file":"File-Uploader-Cell-ZAjp.CpXhHvJi.mjs","names":["Component","_Fragment","Feather"],"sources":["https:/framerusercontent.com/modules/QN07RK53fKRENGACRJl1/dVWaDmriBqkfXSIr8dcS/CaseContext.js","https:/framer.com/m/File-Uploader-Cell-ZAjp.js"],"sourcesContent":["import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{useContext,createContext,useEffect,useReducer}from\"react\";import{AppContext}from\"https://framerusercontent.com/modules/LviyTR2D3qbKvMIMym2i/YAdn0M0ds2J1gYr817cw/AppContext.js\";import{ConversationContext}from\"https://framerusercontent.com/modules/XVpKELl8dJ008OEmOHTv/7kE4QecLi4zYaItD3O90/ConversationContext.js\";import{AuthGuard}from\"https://framerusercontent.com/modules/k9ohgqJCToygzNqYdRg5/eCuKRjvsNS0BV4Pwd3gj/AppComponents.js\";import{LOCALSTORAGE_KEY}from\"https://framerusercontent.com/modules/VC1sHoZBrCYrvpJCNfnS/8Jbvy3HNK7lBLVCxij2z/Shared.js\";import{SUPPORT_API_URL,useMutate,useFetch}from\"https://framerusercontent.com/modules/VC1sHoZBrCYrvpJCNfnS/8Jbvy3HNK7lBLVCxij2z/Shared.js\";export const useListCases=options=>{const{state}=useContext(AppContext);const{dispatch}=useContext(CaseContext);const newOptions={...options,token:state.token,onSuccess:data=>{dispatch({type:\"FETCH_CASES\",cases:data.results});if(options.onSuccess){options.onSuccess(data);}}};return useFetch(`${SUPPORT_API_URL}/cases`,[],newOptions);};const caseReducer=(state,action)=>{switch(action.type){case\"FETCH_CASES\":let cases={...state.casesById};if(action.cases&&action.cases.length){action.cases.forEach(c=>{cases[c.conversation.id]=c;});}else if(action.cases&&!action.cases.length){cases={};}return{...state,casesById:cases};case\"FETCH_CASE_MESSAGES\":let caseMessages={...state.caseMessagesByCaseId,[action.conversationId]:action.messages};return{...state,caseMessagesByCaseId:caseMessages};case\"CREATE_CASE\":return{...state,casesById:{...state.casesById,[action.case.conversation.id]:action.case}};case\"CREATE_CASE_MESSAGE\":const existingMessages=state.caseMessagesByCaseId&&state.caseMessagesByCaseId[action.caseId]||[];let newCaseMessages={...state.caseMessagesByCaseId,[action.caseId]:[...existingMessages,action.message]};return{...state,caseMessagesByCaseId:newCaseMessages};case\"UPDATE_CASE\":return{...state,casesById:{...state.casesById,[action.caseId]:{...state.casesById[action.caseId],closed:action.closed}}};case\"SWITCH_WIZARD_TYPE\":return{...state,caseWizard:{...state.caseWizard,type:action.wizardType}};case\"RESET\":return initialState;default:return state;}};const initialState={caseWizard:{type:\"ENGAGEMENTS\",fields:[]},casesById:{},caseMessagesByCaseId:{}};const initialContext={state:initialState,dispatch:()=>undefined};export const CaseContext=/*#__PURE__*/createContext(initialContext);const WithCasesLoaded=({children})=>{const{state}=useContext(CaseContext);const{data:memberships,error}=useListCases({enabled:true});return /*#__PURE__*/_jsx(_Fragment,{children:children});};export const useCreateCase=options=>{const{state}=useContext(AppContext);const{dispatch}=useContext(CaseContext);const{dispatch:dispatchConversation}=useContext(ConversationContext);return useMutate(({subject,description,attributes})=>{return fetch(`${SUPPORT_API_URL}/cases`,{method:\"POST\",headers:{Authorization:`Bearer ${state.token}`,\"Content-Type\":\"application/json\"},body:JSON.stringify({subject,description,attributes})});},{...options,onSuccess:data=>{dispatch({type:\"CREATE_CASE\",case:{archived:false,closed:false,conversation:data.conversation}});if(options.onSuccess){options.onSuccess(data);}},onError:data=>{alert(\"An expected error occured. Please try again later, or reach out to inbox@cx.messagebird.com\");}});};export const useCreateCaseMessage=(caseId,options)=>{const{state}=useContext(AppContext);const{dispatch}=useContext(CaseContext);return useMutate(({text})=>{return fetch(`${SUPPORT_API_URL}/cases/${caseId}/messages`,{method:\"POST\",headers:{Authorization:`Bearer ${state.token}`,\"Content-Type\":\"application/json\"},body:JSON.stringify({text})});},{...options,onSuccess:data=>{dispatch({type:\"CREATE_CASE_MESSAGE\",caseId,message:data});if(options.onSuccess){options.onSuccess(data);}},onError:data=>{alert(\"An expected error occured. Please try again later, or reach out to inbox@cx.messagebird.com\");}});};export const useUpdateCase=(caseId,options)=>{const{state}=useContext(AppContext);const{dispatch}=useContext(CaseContext);return useMutate(({closed})=>{return fetch(`${SUPPORT_API_URL}/cases/${caseId}`,{method:\"PATCH\",headers:{Authorization:`Bearer ${state.token}`,\"Content-Type\":\"application/json\"},body:JSON.stringify({closed})});},{...options,onSuccess:data=>{dispatch({type:\"UPDATE_CASE\",caseId,closed:data.closed});if(options.onSuccess){options.onSuccess(data);}},onError:data=>{alert(\"An expected error occured. Please try again later, or reach out to inbox@cx.messagebird.com\");}});};export const useListCaseMessages=(conversationId,options)=>{const{state}=useContext(AppContext);const{dispatch}=useContext(CaseContext);const newOptions={...options,token:state.token,onSuccess:data=>{if(data&&data.results){dispatch({type:\"FETCH_CASE_MESSAGES\",conversationId,messages:data.results});}}};return useFetch(`${SUPPORT_API_URL}/cases/${conversationId}/messages`,[conversationId],newOptions);};const initializer=(initialValue=initialState)=>JSON.parse(localStorage.getItem(LOCALSTORAGE_KEY.CASE_CONTEXT))||initialValue;export function withCaseContext(Component){return props=>{const[state,dispatch]=useReducer(caseReducer,initialState,initializer);useEffect(()=>{localStorage.setItem(LOCALSTORAGE_KEY.CASE_CONTEXT,JSON.stringify(state));},[state]);return /*#__PURE__*/_jsx(AuthGuard,{children:/*#__PURE__*/_jsx(CaseContext.Provider,{value:{state,dispatch},children:/*#__PURE__*/_jsx(WithCasesLoaded,{children:/*#__PURE__*/_jsx(Component,{...props})})})});};}export const ComposerContext=/*#__PURE__*/createContext({postMessage:()=>{},composedMessage:undefined,setComposedMessage:()=>{}});\nexport const __FramerMetadata__ = {\"exports\":{\"useListCaseMessages\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCreateCaseMessage\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCreateCase\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCaseContext\":{\"type\":\"reactHoc\",\"name\":\"withCaseContext\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CaseContext\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Case\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useUpdateCase\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CaseMessage\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ComposerContext\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useListCases\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (3fa6aa4)\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{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const cycleOrder=[\"O_bBoN6aE\"];const serializationHash=\"framer-l58pb\";const variantClassNames={O_bBoN6aE:\"framer-v-1ejtn71\"};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,remove,status,title,width,...props})=>{var _ref,_ref1;return{...props,AY8vtZcru:(_ref=status!==null&&status!==void 0?status:props.AY8vtZcru)!==null&&_ref!==void 0?_ref:\"Uploading\",Qe0_UK57o:remove!==null&&remove!==void 0?remove:props.Qe0_UK57o,svL6riFvE:(_ref1=title!==null&&title!==void 0?title:props.svL6riFvE)!==null&&_ref1!==void 0?_ref1:\"File name here\"};};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,svL6riFvE,AY8vtZcru,Qe0_UK57o,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"O_bBoN6aE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClick10hrzfy=activeVariantCallback(async(...args)=>{if(Qe0_UK57o){const res=await Qe0_UK57o(...args);if(res===false)return false;}});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-1ejtn71\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"O_bBoN6aE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wy3gir\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"uFnQ6_79F\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0f4b9986-3541-455e-bd3d-0bddcf19f690, rgb(236, 239, 248))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p7t9re\",layoutDependency:layoutDependency,layoutId:\"pRlzwIfLC\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a2aj7y-container\",layoutDependency:layoutDependency,layoutId:\"tmEh2RjFD-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-e95366b0-0756-4ec1-a4e2-aa8e8bd6ceb2, rgb(195, 205, 221))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"file\",id:\"tmEh2RjFD\",layoutId:\"tmEh2RjFD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cgs2jd\",layoutDependency:layoutDependency,layoutId:\"qFEcB2rrK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"600\"},children:\"File name here\"})}),className:\"framer-29zfav\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"kbkafCzoK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:svL6riFvE,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1d05a5df-cd91-4b2b-9722-67f8a20c40f3, rgb(161, 175, 195)))\"},children:\"Uploading\"})}),className:\"framer-11ps066\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aSRRXQpxq\",style:{\"--extracted-r6o4lv\":\"var(--token-1d05a5df-cd91-4b2b-9722-67f8a20c40f3, rgb(161, 175, 195))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AY8vtZcru,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hxuy81-container\",layoutDependency:layoutDependency,layoutId:\"T9aYzPbHA-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-e95366b0-0756-4ec1-a4e2-aa8e8bd6ceb2, rgb(195, 205, 221))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"T9aYzPbHA\",layoutId:\"T9aYzPbHA\",mirrored:false,onClick:onClick10hrzfy,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-l58pb.framer-1v0h4r2, .framer-l58pb .framer-1v0h4r2 { display: block; }\",\".framer-l58pb.framer-1ejtn71 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 10px 10px 0px; position: relative; width: min-content; }\",\".framer-l58pb .framer-wy3gir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: auto; }\",\".framer-l58pb .framer-p7t9re { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-l58pb .framer-1a2aj7y-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-l58pb .framer-cgs2jd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-l58pb .framer-29zfav, .framer-l58pb .framer-11ps066 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-l58pb .framer-1hxuy81-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l58pb.framer-1ejtn71, .framer-l58pb .framer-wy3gir, .framer-l58pb .framer-p7t9re, .framer-l58pb .framer-cgs2jd { gap: 0px; } .framer-l58pb.framer-1ejtn71 > *, .framer-l58pb .framer-p7t9re > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-l58pb.framer-1ejtn71 > :first-child, .framer-l58pb .framer-wy3gir > :first-child, .framer-l58pb .framer-p7t9re > :first-child { margin-left: 0px; } .framer-l58pb.framer-1ejtn71 > :last-child, .framer-l58pb .framer-wy3gir > :last-child, .framer-l58pb .framer-p7t9re > :last-child { margin-right: 0px; } .framer-l58pb .framer-wy3gir > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-l58pb .framer-cgs2jd > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-l58pb .framer-cgs2jd > :first-child { margin-top: 0px; } .framer-l58pb .framer-cgs2jd > :last-child { margin-bottom: 0px; } }\",'.framer-l58pb[data-border=\"true\"]::after, .framer-l58pb [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 65\n * @framerIntrinsicWidth 186\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"svL6riFvE\":\"title\",\"AY8vtZcru\":\"status\",\"Qe0_UK57o\":\"remove\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVgeDUXGXe=withCSS(Component,css,\"framer-l58pb\");export default FramerVgeDUXGXe;FramerVgeDUXGXe.displayName=\"File Uploader / Cell\";FramerVgeDUXGXe.defaultProps={height:65,width:186};addPropertyControls(FramerVgeDUXGXe,{svL6riFvE:{defaultValue:\"File name here\",displayTextArea:false,title:\"Title\",type:ControlType.String},AY8vtZcru:{defaultValue:\"Uploading\",displayTextArea:false,title:\"Status\",type:ControlType.String},Qe0_UK57o:{title:\"Remove\",type:ControlType.EventHandler}});addFonts(FramerVgeDUXGXe,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-SemiBold.cyrillic-ext-C7KWUKA7.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-SemiBold.cyrillic-JWV7SOZ6.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-SemiBold.greek-ext-FBKSFTSU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-SemiBold.greek-EQ3PSENU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-SemiBold.latin-ext-ULRSO3ZR.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-SemiBold.latin-RDYY2AG2.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-SemiBold.vietnamese-ESQNSEQ3.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVgeDUXGXe\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"65\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"svL6riFvE\\\":\\\"title\\\",\\\"AY8vtZcru\\\":\\\"status\\\",\\\"Qe0_UK57o\\\":\\\"remove\\\"}\",\"framerIntrinsicWidth\":\"186\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VgeDUXGXe.map"],"mappings":"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"}