{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRockingHorse/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 IconRockingHorse: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconRockingHorse\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M22.001 7.5L20.001 9L18.001 8L17.001 10L19.3643 18.0352C19.7348 17.8375 20.1062 17.6256 20.4775 17.3975L21.3291 16.874L22.377 18.5781L21.5244 19.1025C18.4084 21.0168 15.2215 22 12.001 22C8.78046 22 5.59355 21.0168 2.47754 19.1025L1.625 18.5781L2.67285 16.874L3.52441 17.3975C3.88803 17.6208 4.25142 17.8293 4.61426 18.0234L6.51465 10.0391C5.08906 10.2714 4.00098 11.5087 4.00098 13H2.00098C2.00098 10.2386 4.23955 8 7.00098 8H12.001L12.0146 7.91797C12.584 4.50295 15.5388 2 19.001 2L22.001 7.5ZM8.625 19.584C9.75555 19.8605 10.8806 20 12.001 20C13.121 20 14.2457 19.8604 15.376 19.584L14.001 15H10.001L8.625 19.584Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRockingHorse;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAqwB,EAArwB,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0mBAA0mB,KAAK,eAAc,CAAI,EAC7wB,EAEc",
  "debugId": "8FDE1B4B6F1FF3EE64756E2164756E21",
  "names": []
}