{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconForkSpoon/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 IconForkSpoon: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconForkSpoon\"><Path d=\"M17 2.75C15.713 2.75 14.6302 3.4576 13.9043 4.41751C13.1773 5.37891 12.75 6.65607 12.75 8C12.75 10.2729 14.0328 12.3402 16 12.8695V21H18V12.8695C19.9672 12.3402 21.25 10.2729 21.25 8C21.25 6.65607 20.8227 5.37891 20.0957 4.41751C19.3698 3.4576 18.287 2.75 17 2.75Z\" fill=\"currentColor\"/><Path d=\"M5 3H3V9C3 10.8638 4.27477 12.4299 6 12.874V21H8V12.874C9.72523 12.4299 11 10.8638 11 9V3H9V9C9 10.1046 8.10457 11 7 11C5.89543 11 5 10.1046 5 9V3Z\" fill=\"currentColor\"/><Path d=\"M8 3H6V9.5H8V3Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconForkSpoon;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAA+lB,EAA/lB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,2QAA2Q,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sJAAsJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,KAAK,eAAc,CAAI,EACvmB,EAEc",
  "debugId": "C1376DE738D8C50564756E2164756E21",
  "names": []
}