{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCereals/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 IconCereals: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCereals\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.9218 2.23853L14.6288 4.90847C14.786 4.66312 14.9695 4.43344 15.1811 4.22179C16.3491 3.05382 18.0662 2.74373 19.9353 2.98181L20.895 3.10407L21.0173 4.06384C21.2554 5.93289 20.9453 7.65002 19.7773 8.81798C19.5656 9.02964 19.336 9.21312 19.0906 9.37027L21.7606 11.0773L19.2552 13.5827C19.0172 13.8208 18.7567 14.0254 18.4799 14.1961L18.5786 14.2592L16.0732 16.7646C15.8352 17.0026 15.5747 17.2073 15.2979 17.3779L15.3967 17.4411L12.8914 19.9465C11.4804 21.3574 9.27798 21.5968 7.59686 20.522C7.59685 20.522 7.59687 20.522 7.59686 20.522L6.16198 19.6047L4.22089 21.5458L2.45312 19.778L4.3942 17.8369L3.4769 16.4022C2.40209 14.7211 2.6415 12.5186 4.05242 11.1077L6.5578 8.60229L6.62103 8.70119C6.7917 8.4244 6.99639 8.16383 7.23442 7.9258L9.73981 5.42041L9.80304 5.51931C9.9737 5.24252 10.1784 4.98195 10.4164 4.74391L12.9218 2.23853ZM9.30863 9.38713L9.00219 9.69356C8.42123 10.2745 8.32264 11.1814 8.76522 11.8737L9.38626 12.845L9.69269 12.5386C10.2737 11.9576 10.3722 11.0507 9.92967 10.3585L9.30863 9.38713ZM11.4605 14.3064L11.154 14.6128L12.1254 15.2338C12.8176 15.6764 13.7245 15.5778 14.3055 14.9968L14.6119 14.6904L13.6405 14.0694C12.9483 13.6268 12.0414 13.7254 11.4605 14.3064ZM14.336 11.4309L15.3074 12.0519C15.9996 12.4945 16.9065 12.3959 17.4875 11.815L17.7939 11.5085L16.8225 10.8875C16.1303 10.4449 15.2234 10.5435 14.6425 11.1245L14.336 11.4309ZM16.3697 7.6294C17.2065 7.59378 17.7147 7.34502 18.0095 7.05022C18.3043 6.75541 18.5531 6.24717 18.5887 5.41037C17.7519 5.44599 17.2437 5.69475 16.9489 5.98956C16.6541 6.28436 16.4053 6.7926 16.3697 7.6294ZM12.8747 9.35671C13.4557 8.77574 13.5542 7.86884 13.1117 7.17662L12.4906 6.20524L12.1842 6.51168C11.6032 7.09264 11.5047 7.99955 11.9472 8.69177L12.5683 9.66315L12.8747 9.35671ZM6.12662 12.569L5.82018 12.8754C5.23922 13.4564 5.14064 14.3633 5.58321 15.0555L6.20424 16.0269L6.34221 15.8889L6.51069 15.7205C7.09165 15.1395 7.19023 14.2326 6.74766 13.5404L6.12662 12.569ZM8.27845 17.4882L7.97205 17.7947L8.94346 18.4157C9.63569 18.8583 10.5426 18.7597 11.1236 18.1787L11.43 17.8723L10.4586 17.2512C9.76643 16.8087 8.85943 16.9073 8.27845 17.4882Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCereals;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAqtE,EAArtE,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+jEAA+jE,KAAK,eAAc,CAAI,EAC7tE,EAEc",
  "debugId": "A076A57B4E9F1E4964756E2164756E21",
  "names": []
}