{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFileJpg/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 IconFileJpg: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconFileJpg\"><Path d=\"M4.5 11.5V3.5H14.25L19.5 9V11.5M19 9.5H13.5V4\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M9 20.5V14.5H11C11.8284 14.5 12.5 15.2945 12.5 16.25C12.5 17.2055 11.8284 18 11 18H9.75\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M6.5 14.5V19C6.5 19.8284 5.82843 20.5 5 20.5H4\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M19.5 17.5247H20V17.0247H19.5V17.5247ZM19.5 19.7515L19.8677 20.0903L20 19.9467V19.7515H19.5ZM17.3213 20.4999V21L17.3274 20.9999L17.3213 20.4999ZM18.0745 17.0247H17.5745V18.0247H18.0745V17.0247ZM19 17.5247V19.7515H20V17.5247H19ZM17.3213 19.9999C16.1413 19.9999 15.2109 19.0419 15.2109 17.4701H14.2109C14.2109 19.4513 15.4563 20.9999 17.3213 20.9999V19.9999ZM15.2109 17.4701C15.2109 15.9036 16.1626 15 17.2308 15V14C15.4868 14 14.2109 15.4836 14.2109 17.4701H15.2109ZM17.2308 15C18.0127 15 18.6983 15.2437 19.2352 15.8492L19.9834 15.1857C19.2221 14.3272 18.2421 14 17.2308 14V15ZM19.1323 19.4127C18.7607 19.816 18.0386 19.9912 17.3153 20L17.3274 20.9999C18.1135 20.9904 19.2029 20.8119 19.8677 20.0903L19.1323 19.4127ZM19.5 17.0247H18.0745V18.0247H19.5V17.0247Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFileJpg;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAysC,EAAzsC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,gDAAgD,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,0FAA0F,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,0vBAA0vB,KAAK,eAAc,CAAI,EACjtC,EAEc",
  "debugId": "542D7C67A1497E9F64756E2164756E21",
  "names": []
}