{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconExposure2/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 IconExposure2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconExposure2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1.71936L14.6697 3.85509L18 2.52295V7.99999C18 10.973 15.8377 13.4409 13 13.917V15.6072C14.0923 14.6089 15.5465 14 17.1429 14C17.4651 14 17.7823 14.0249 18.0923 14.0731L18.8147 14.1853L18.9269 14.9077C18.9751 15.2177 19 15.5349 19 15.8571C19 19.2497 16.2497 22 12.8571 22C12.5668 22 12.2806 21.9798 12 21.9406C11.7194 21.9798 11.4332 22 11.1429 22C7.75025 22 5 19.2497 5 15.8571C5 15.5349 5.02491 15.2177 5.07307 14.9077L5.1853 14.1853L5.9077 14.0731C6.21771 14.0249 6.53486 14 6.85714 14C8.45353 14 9.90769 14.6089 11 15.6072V13.917C8.16229 13.4409 6 10.973 6 7.99999V2.52295L9.33034 3.85509L12 1.71936ZM16.9975 16.0025C16.9226 18.175 15.175 19.9226 13.0025 19.9975C13.0774 17.825 14.825 16.0774 16.9975 16.0025ZM7.0025 16.0025C7.07742 18.175 8.82503 19.9226 10.9975 19.9975C10.9226 17.825 9.17498 16.0774 7.0025 16.0025Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconExposure2;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAo9B,EAAp9B,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4zBAA4zB,KAAK,eAAc,CAAI,EAC59B,EAEc",
  "debugId": "8E3946E66673B88464756E2164756E21",
  "names": []
}