{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTapas/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 IconTapas: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconTapas\"><Path d=\"M13.0431 4.04309C14.6341 2.45209 17.4716 2.71004 19.3808 4.61924C21.29 6.52844 21.5479 9.36591 19.9569 10.9569C18.3659 12.5479 15.5284 12.29 13.6192 10.3808C11.71 8.47156 11.4521 5.63409 13.0431 4.04309Z\" stroke=\"currentColor\"/><Path d=\"M19.5 4.5L21 3\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M3 21L6 18\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M9.02381 21L3 14.9762L4.38149 13.6071C4.38149 13.6071 5.82922 14.3178 6.83333 13.3333C7.83744 12.3488 7.14448 10.869 7.14448 10.869L8.52597 9.5L14.5 15.474L9.02381 21Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M11.75 12.25L13.5 10.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M11.25 18.75C11.25 17.5074 10.2426 16.5 9 16.5C7.75736 16.5 6.75 17.5074 6.75 18.75\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTapas;\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,gBAA82B,EAA92B,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,8MAA8M,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,0KAA0K,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,sFAAsF,OAAO,eAAc,CAAI,EACt3B,EAEc",
  "debugId": "4999004C604AF65B64756E2164756E21",
  "names": []
}