{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTea/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 IconTea: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"tea, cafe, coffee, vibe\"><path d=\"M3 11.75C3 10.2313 4.23122 9.00005 5.75 9.00005H19.75C21.6106 9.00005 23 10.6359 23 12.5C23 14.3642 21.6106 16 19.75 16H18.7334C17.8283 19.4502 14.714 22 11 22C6.57512 22 3 18.381 3 13.9317V11.75ZM8.40527 2.4229C8.57076 2.08053 8.97197 1.91199 9.33691 2.04497C9.72608 2.18682 9.92603 2.61772 9.78418 3.00689L9.71777 3.20025C9.42708 4.09743 9.42708 4.90267 9.71777 5.79985L9.78418 5.99321L9.80762 6.06646C9.90107 6.43494 9.70177 6.82214 9.33691 6.95513C8.97197 7.0881 8.57076 6.91957 8.40527 6.5772L8.375 6.50689L8.28711 6.25103C7.87649 4.97533 7.90582 3.78047 8.375 2.49321L8.40527 2.4229ZM12.4053 2.4229C12.5708 2.08053 12.972 1.91199 13.3369 2.04497C13.7261 2.18682 13.926 2.61772 13.7842 3.00689L13.7178 3.20025C13.4271 4.09743 13.4271 4.90267 13.7178 5.79985L13.7842 5.99321L13.8076 6.06646C13.9011 6.43494 13.7018 6.82214 13.3369 6.95513C12.972 7.0881 12.5708 6.91957 12.4053 6.5772L12.375 6.50689L12.2871 6.25103C11.8765 4.97533 11.9058 3.78047 12.375 2.49321L12.4053 2.4229ZM19 13.9317C19 14.1228 18.9905 14.3123 18.9775 14.5H19.75C20.6508 14.5 21.5 13.6735 21.5 12.5C21.5 11.3266 20.6508 10.5 19.75 10.5H18.6973C18.8894 10.8754 19 11.2995 19 11.75V13.9317Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTea;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAA8uC,EAA9uC,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,EAAE,+oCAA+oC,KAAK,eAAc,CAAI,GAGxuC",
  "debugId": "856240B68F008DB264756E2164756E21",
  "names": []
}