{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPizza/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 IconPizza: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPizza\"><Path d=\"M19.4706 13.0091L21.2249 2.77539L15.9105 3.68643C16.5762 4.23669 17.0004 5.06875 17.0004 5.99989C17.0004 7.65675 15.6573 8.99989 14.0004 8.99989C12.3436 8.99989 11.0004 7.65675 11.0004 5.99989C11.0004 5.43474 11.1567 4.90609 11.4284 4.4548L7.16992 5.18482C7.71611 8.66998 9.54803 11.7287 12.1651 13.8603C12.6558 12.2064 14.1872 10.9999 16.0004 10.9999C17.4848 10.9999 18.7803 11.8084 19.4706 13.0091Z\" fill=\"currentColor\"/><Path d=\"M17.3172 16.5106L17.4088 16.4196C17.775 16.0561 18 15.5553 18 15C18 13.8954 17.1046 13 16 13C14.8954 13 14 13.8954 14 15V15.127C15.03 15.7228 16.1429 16.1912 17.3172 16.5106Z\" fill=\"currentColor\"/><Path d=\"M18.4771 18.8022C11.6611 17.7226 6.27748 12.3389 5.19784 5.52295L1.83203 6.09994L2.01681 7.09659C2.67905 10.6685 4.39229 14.0848 7.1538 16.8463C9.9153 19.6078 13.3316 21.321 16.9035 21.9833L17.9001 22.168L18.4771 18.8022Z\" fill=\"currentColor\"/><Path d=\"M14 5C13.4477 5 13 5.44772 13 6C13 6.55228 13.4477 7 14 7C14.5523 7 15 6.55228 15 6C15 5.44772 14.5523 5 14 5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPizza;\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,EAA8D,EAAM,KAAK,CAAC,IAAU,CAC/F,OAAO,gBAA0lC,EAA1lC,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,EAAE,mZAAmZ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iLAAiL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gOAAgO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,CAAI,EAClmC,EAEc",
  "debugId": "F20B0D0017050F2364756E2164756E21",
  "names": []
}