{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCereals/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCereals: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"cereals, wheat, gluten, corn, grain\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.6418 5.39119C14.8272 5.02579 15.0647 4.69274 15.3589 4.3985C16.4501 3.30729 18.075 2.99666 19.9047 3.22974C20.3568 3.28732 20.7127 3.64328 20.7703 4.09536C21.0034 5.92511 20.6928 7.54993 19.6016 8.64114C19.3073 8.93539 18.9743 9.17288 18.6089 9.35826L20.317 10.4503C20.5722 10.6135 20.7397 10.8836 20.7725 11.1848C20.8052 11.486 20.6996 11.7857 20.4854 12L19.0795 13.4059C18.6472 13.8382 18.1358 14.1537 17.5882 14.3476C17.589 14.354 17.5898 14.3603 17.5905 14.3667C17.6232 14.6679 17.5176 14.9676 17.3034 15.1819L15.8975 16.5878C15.4652 17.0201 14.9539 17.3355 14.4063 17.5295C14.4071 17.5358 14.4079 17.5422 14.4086 17.5486C14.4413 17.8497 14.3358 18.1495 14.1215 18.3637L12.7156 19.7696C11.3877 21.0976 9.3148 21.3229 7.73257 20.3113C7.73256 20.3113 7.73256 20.3113 7.73255 20.3113L6.12836 19.2857L4.92905 20.4851C4.53852 20.8756 3.90536 20.8756 3.51483 20.4851C3.12431 20.0945 3.12431 19.4614 3.51483 19.0708L4.71414 17.8715L3.68858 16.2675C2.67699 14.6852 2.90232 12.6123 4.23024 11.2844L5.63615 9.87848C5.85037 9.66426 6.15015 9.5587 6.45132 9.59144C6.45773 9.59214 6.46413 9.5929 6.47051 9.59371C6.66447 9.04611 6.97993 8.53482 7.41225 8.1025L8.81816 6.69659C9.03238 6.48238 9.33216 6.37682 9.63333 6.40956C9.63974 6.41025 9.64614 6.41101 9.65252 6.41183C9.84648 5.86422 10.1619 5.35294 10.5943 4.92062L12.0002 3.51471C12.2144 3.30049 12.5142 3.19493 12.8153 3.22767C13.1165 3.26041 13.3866 3.42791 13.5498 3.68315L14.6418 5.39119ZM16.1167 7.88341C17.1505 7.89146 17.8022 7.61204 18.1874 7.22693C18.5725 6.84181 18.8519 6.1901 18.8438 5.15622C17.81 5.14817 17.1583 5.4276 16.7731 5.81271C16.388 6.19783 16.1086 6.84953 16.1167 7.88341ZM9.35279 8.99039L8.82646 9.51672C8.1625 10.1807 8.04984 11.2171 8.55563 12.0083L9.34419 13.2416L9.87052 12.7153C10.5345 12.0513 10.6471 11.0149 10.1413 10.2238L9.35279 8.99039ZM13.9404 11.474L15.1738 12.2625L15.1212 12.3447L15.1738 12.2625C15.9649 12.7683 17.0013 12.6556 17.6653 11.9917L18.1916 11.4653L16.9583 10.6768C16.1672 10.171 15.1307 10.2837 14.4667 10.9476L13.9404 11.474ZM13.0525 9.53342C13.7165 8.86946 13.8291 7.833 13.3234 7.04188L12.5348 5.8085L12.0085 6.33483C11.3445 6.99879 11.2318 8.03525 11.7376 8.82637L12.5262 10.0597L13.0525 9.53342ZM15.0096 14.6472L13.7762 13.8587C12.9851 13.3529 11.9487 13.4655 11.2847 14.1295L10.7584 14.6558L11.9918 15.4444L11.9392 15.5266L11.9918 15.4444C12.7829 15.9502 13.8193 15.8375 14.4833 15.1735L15.0096 14.6472ZM6.17079 12.1723L5.64446 12.6986C4.98049 13.3626 4.86783 14.399 5.37363 15.1901L6.16218 16.4235L6.68851 15.8972C7.35247 15.2332 7.46514 14.1968 6.95934 13.4057L6.17079 12.1723ZM8.10272 17.3114L7.57642 17.8377L8.80985 18.6262L8.80987 18.6263C9.60099 19.1321 10.6374 19.0194 11.3014 18.3554L11.8277 17.8291L10.5944 17.0405C9.80325 16.5348 8.76669 16.6474 8.10272 17.3114Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCereals;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAg3F,EAAh3F,IAAqB,EAAO,UAAU,uCAAsC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+tFAA+tF,KAAK,eAAc,CAAI,GAG12F",
  "debugId": "BC2CB612C968539A64756E2164756E21",
  "names": []
}