{
  "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-filled-radius-0-stroke-2-IconTapas\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.9137 3.50003L19.9158 5.49791C21.3078 7.44626 21.4656 10.0937 19.7794 11.7799C18.0932 13.4661 15.4457 13.3084 13.4973 11.9164L12.6864 12.7273L15.4105 15.4514L9.00266 21.9174L6.24945 19.1642L3.49945 21.9142L2.08524 20.5L4.83524 17.75L2.08203 14.9968L4.56251 12.5387C5.03814 12.7722 5.59919 13.4725 6.29935 12.786C6.99951 12.0995 6.30305 11.5142 6.07902 11.0358L8.5481 8.58901L11.2722 11.3131L12.0831 10.5022C10.6911 8.5538 10.5333 5.90631 12.2195 4.22011C13.9057 2.53392 16.5532 2.69166 18.5016 4.08369L20.4995 2.08582L21.9137 3.50003ZM7.49951 17.5001L8.99625 19.0826L10.4995 17.5001C9.99951 16.0001 7.99951 16.0001 7.49951 17.5001Z\" fill=\"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,gBAAixB,EAAjxB,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6nBAA6nB,KAAK,eAAc,CAAI,EACzxB,EAEc",
  "debugId": "77B7425FE889494264756E2164756E21",
  "names": []
}