{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRequestClosed/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconRequestClosed: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconRequestClosed\"><Path d=\"M15.75 2.83594L14.3358 4.25015L16.0858 6.00015L14.3358 7.75015L15.75 9.16436L17.5 7.41436L19.25 9.16436L20.6642 7.75015L18.9142 6.00015L20.6642 4.25015L19.25 2.83594L17.5 4.58594L15.75 2.83594Z\" fill=\"currentColor\"/><Path d=\"M6.5 3.00015C4.84315 3.00015 3.5 4.3433 3.5 6.00015C3.5 7.30637 4.33481 8.41761 5.5 8.82945V15.1709C4.33481 15.5827 3.5 16.6939 3.5 18.0002C3.5 19.657 4.84315 21.0002 6.5 21.0002C8.15685 21.0002 9.5 19.657 9.5 18.0002C9.5 16.6939 8.66519 15.5827 7.5 15.1709V8.82945C8.66519 8.41761 9.5 7.30637 9.5 6.00015C9.5 4.3433 8.15685 3.00015 6.5 3.00015Z\" fill=\"currentColor\"/><Path d=\"M18.5 10.0002H16.5V15.1709C15.3348 15.5827 14.5 16.6939 14.5 18.0002C14.5 19.657 15.8431 21.0002 17.5 21.0002C19.1569 21.0002 20.5 19.657 20.5 18.0002C20.5 16.6939 19.6652 15.5827 18.5 15.1709V10.0002Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRequestClosed;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAA45B,EAA55B,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,oMAAoM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4VAA4V,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,CAAI,EACp6B,EAEc",
  "debugId": "9B717465DD017E1E64756E2164756E21",
  "names": []
}