{
  "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-outlined-radius-0-stroke-1-IconPizza\"><Path d=\"M20.5 3.5L17.4143 21.5C13.8361 20.8366 10.4146 19.121 7.64678 16.3532C4.879 13.5854 3.16341 10.1639 2.5 6.58571L20.5 3.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M12.051 5.31302C12.0367 5.41247 12.0293 5.51415 12.0293 5.61756C12.0293 6.7871 12.9774 7.7352 14.1469 7.7352C15.3165 7.7352 16.2646 6.7871 16.2646 5.61756C16.2646 5.24531 16.1685 4.8955 15.9999 4.59155\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M6.24414 6.29517C6.82412 9.01491 8.17053 11.6039 10.2834 13.7168C11.1793 14.6127 12.1608 15.3708 13.2016 15.9911C14.6111 16.8311 16.1293 17.4184 17.6908 17.753\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M18.5136 12.9042C17.9385 12.3275 17.1431 11.9707 16.2644 11.9707C14.51 11.9707 13.0879 13.3929 13.0879 15.1472C13.0879 15.315 13.1009 15.4798 13.126 15.6405\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,gBAAo7B,EAAp7B,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,4HAA4H,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,4MAA4M,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,kKAAkK,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,+JAA+J,OAAO,eAAe,cAAc,SAAQ,CAAI,EAC57B,EAEc",
  "debugId": "4D0B69AAA6BE121964756E2164756E21",
  "names": []
}