{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGarlic/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 IconGarlic: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"garlic\"><path d=\"M14.5015 20.6748C19.7245 21.7071 21 17.8889 21 15.1636C20.6156 9.97022 14.5203 7.97113 13.1815 3.28316C13.0008 2.65039 12.339 2.21986 11.7201 2.4435L10.7654 2.78848C10.3692 2.93164 10.1136 3.31098 10.0651 3.72942C9.49304 8.66359 3 10.5241 3 16.0966C3 19.9411 6.31501 21.682 9.35963 20.5667M13.4211 10.7297C14.3684 12.7838 16.0915 19.3536 13.8502 20.5268C12.6693 21.1449 10.887 21.2131 9.77278 20.3972C8.26805 19.2909 8.68421 14.3243 9.63158 12.2703\" stroke=\"currentColor\" strokeWidth=\"1.90026\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconGarlic;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAulB,EAAvlB,IAAqB,EAAO,UAAU,UAAS,gBAAC,OAAD,CAAM,EAAE,mcAAmc,OAAO,eAAe,YAAY,UAAU,cAAc,SAAS,eAAe,QAAO,CAAI,GAGjlB",
  "debugId": "AFF6DB68CC04371664756E2164756E21",
  "names": []
}