{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAiSlopSign/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconAiSlopSign: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconAiSlopSign\"><Path d=\"M12.0003 1.91797L1.91699 12.0013C2.98673 13.2047 3.70436 13.7487 2.62781 15.1851C2.24761 15.6923 1.97768 16.2934 2.23784 16.8137C3.11748 18.5728 5.81284 16.1262 6.50034 18.1887C6.74048 18.9091 6.02147 20.3555 7.18785 20.9387C8.35423 21.5219 8.99222 19.5637 10.6254 19.5637C12.2585 19.5637 12.4424 20.4543 14.0628 20.2512C15.4974 20.0714 16.0699 19.0867 17.5003 18.8762C17.7989 18.8323 18.0935 18.8794 18.3771 18.9885C19.6051 19.461 21.4988 19.2703 21.8035 17.9903C21.9122 17.534 21.7309 17.0948 21.4162 16.7C20.8707 16.0159 19.7405 15.0779 20.1103 14.0881C20.4086 13.2897 21.4776 12.5908 22.0837 12.0013L12.0003 1.91797Z\" stroke=\"currentColor\"/><Circle cx=\"12\" cy=\"15\" r=\"0.75\" fill=\"currentColor\"/><Path d=\"M11.4004 8H12.6002L12.4002 13H11.6002L11.4004 8Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAiSlopSign;\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,iBAAS,UAAQ,yBAEV,IAAM,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA42B,EAA52B,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,+mBAA+mB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mDAAmD,KAAK,eAAc,CAAI,EACp3B,EAEc",
  "debugId": "871E7C3035DE95A664756E2164756E21",
  "names": []
}