{
  "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 { Path } from \"react-native-svg\";\n\nexport const IconAiSlopSign: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAiSlopSign\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M23.5068 12.0098L20.8271 14.626C20.5767 14.8706 20.4495 14.9967 20.3643 15.1025C20.3017 15.1803 20.2878 15.2163 20.2764 15.2568C20.2756 15.2602 20.2718 15.2764 20.2695 15.3057C20.2669 15.3402 20.2672 15.3832 20.2705 15.4287C20.2738 15.4741 20.2795 15.5162 20.2871 15.5498C20.2935 15.5783 20.2996 15.5936 20.3008 15.5967C20.3225 15.6451 20.3423 15.6757 20.4004 15.7305C20.4865 15.8116 20.6107 15.9049 20.873 16.0957C21.2414 16.3636 21.6626 16.6884 21.9736 17.0508C22.272 17.3985 22.6486 17.9933 22.4727 18.7324C22.3399 19.2888 21.9264 19.6229 21.6055 19.8027C21.2673 19.9921 20.8743 20.104 20.4951 20.1641C19.7399 20.2836 18.8179 20.2298 18.0176 19.9219C17.8614 19.8618 17.7416 19.8511 17.6455 19.8652C17.1465 19.9388 16.7989 20.138 16.29 20.4375C15.7871 20.7335 15.1282 21.1252 14.1875 21.2432C13.129 21.3758 12.4866 21.1346 11.9492 20.9004C11.5012 20.7052 11.2149 20.5635 10.625 20.5635C10.2239 20.5636 9.92944 20.7819 9.36426 21.2441C9.13044 21.4354 8.77608 21.7287 8.36426 21.8965C7.87804 22.0944 7.31614 22.1209 6.74023 21.833C6.24291 21.5842 5.90153 21.2111 5.70605 20.7656C5.52406 20.3504 5.49469 19.9296 5.49707 19.6074C5.4993 19.3131 5.53622 18.9471 5.54688 18.7773C5.56222 18.5321 5.54426 18.4824 5.55176 18.5049C5.52907 18.4368 5.50709 18.394 5.49219 18.3691C5.47859 18.3466 5.46956 18.3368 5.46777 18.335L5.4668 18.334C5.46483 18.333 5.45403 18.3287 5.43164 18.3232C5.29365 18.2898 5.06535 18.3034 4.59375 18.376C4.21785 18.4339 3.61076 18.5454 3.0498 18.4727C2.38381 18.3862 1.73407 18.041 1.34375 17.2607C1.17768 16.9286 1.12984 16.5606 1.22949 16.1963C1.31796 15.8734 1.50048 15.6362 1.62695 15.4922C1.74951 15.3527 1.90577 15.2089 1.98828 15.1289C2.09133 15.029 2.1551 14.9605 2.2002 14.9004C2.39197 14.6444 2.43289 14.4875 2.44141 14.4102C2.44891 14.3406 2.43927 14.2521 2.36816 14.1094C2.28914 13.951 2.15162 13.7617 1.93262 13.5088C1.68362 13.2213 1.49174 13.028 1.16992 12.666L0.542969 11.9609L12 0.50293L23.5068 12.0098ZM12 14C11.4477 14 11 14.4477 11 15C11 15.5523 11.4477 16 12 16C12.5523 16 13 15.5523 13 15C13 14.4477 12.5523 14 12 14ZM11 8L11.2998 13H12.7002L13 8H11Z\" 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,eAAS,yBAEF,IAAM,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAwsE,EAAxsE,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+iEAA+iE,KAAK,eAAc,CAAI,EAChtE,EAEc",
  "debugId": "A8995AFEEBA5775E64756E2164756E21",
  "names": []
}