{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEmojiAngry/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 IconEmojiAngry: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"emoji-angry\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12.002 14C10.5424 13.9903 9.16793 14.7502 8.31055 15.7988C8.21234 15.9163 8.12219 16.0333 8.03418 16.1572C7.94628 16.2833 7.90394 16.4384 7.92188 16.5928C7.9398 16.747 8.016 16.8876 8.13477 16.9844C8.25362 17.0811 8.40684 17.127 8.56152 17.1133C8.71639 17.0995 8.86019 17.0268 8.96582 16.915C9.05138 16.8258 9.13587 16.7424 9.22559 16.6602C10.0214 15.9269 11.0074 15.497 12.0029 15.5C12.9983 15.4952 13.9839 15.9238 14.7773 16.6582C14.8668 16.7405 14.9519 16.8237 15.0371 16.9131C15.1423 17.0251 15.2847 17.099 15.4395 17.1133C15.5942 17.1276 15.748 17.0818 15.8672 16.9854C15.9862 16.889 16.0627 16.7489 16.0811 16.5947C16.0995 16.4404 16.0572 16.2856 15.9697 16.1592C15.882 16.0349 15.7923 15.9166 15.6943 15.7988C14.839 14.7474 13.4612 13.9874 12.002 14ZM7.19727 7.82422C7.04402 7.77946 6.87647 7.79793 6.73242 7.87305C6.58822 7.94861 6.47923 8.075 6.42871 8.22656C6.37833 8.37808 6.38992 8.54452 6.45996 8.69141C6.5302 8.83784 6.65328 8.95372 6.80273 9.00977C6.85602 9.02972 6.90961 9.05036 6.96289 9.07031C7.36872 9.22227 7.77483 9.37345 8.18066 9.52539C8.06519 9.74129 8.00007 9.99347 8 10.2695C8 11.1532 8.67157 11.75 9.5 11.75C10.3284 11.75 11 11.1532 11 10.2695C11 10.1014 10.9748 9.94246 10.9297 9.79492C10.9381 9.77517 10.9502 9.75686 10.957 9.73633C11.0222 9.54078 11.0087 9.32811 10.9199 9.15039C10.831 8.97247 10.6733 8.84304 10.4824 8.78711C10.4278 8.7711 10.373 8.75527 10.3184 8.73926C9.33311 8.45036 8.34755 8.16096 7.3623 7.87207C7.3076 7.85603 7.25197 7.84026 7.19727 7.82422ZM16.8027 7.82422C16.7479 7.8403 16.6925 7.85599 16.6377 7.87207C15.6495 8.16196 14.6611 8.4523 13.6729 8.74219C13.618 8.75828 13.5627 8.77395 13.5078 8.79004C13.317 8.84596 13.1592 8.97551 13.0703 9.15332C12.9815 9.33104 12.968 9.54373 13.0332 9.73926C13.0415 9.76403 13.0539 9.78694 13.0645 9.81055C13.0224 9.95359 13 10.1074 13 10.2695C13 11.1532 13.6716 11.75 14.5 11.75C15.3284 11.75 16 11.1532 16 10.2695C15.9999 9.9933 15.934 9.74138 15.8184 9.52539C16.2246 9.37344 16.6311 9.2223 17.0371 9.07031C17.0905 9.05033 17.1439 9.02975 17.1973 9.00977C17.3469 8.95368 17.4708 8.83802 17.541 8.69141C17.6111 8.54452 17.6217 8.3781 17.5713 8.22656C17.5208 8.07498 17.4118 7.94861 17.2676 7.87305C17.1235 7.79793 16.956 7.77944 16.8027 7.82422Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEmojiAngry;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAy6E,EAAz6E,IAAqB,EAAO,UAAU,eAAc,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gzEAAgzE,KAAK,eAAc,CAAI,GAGn6E",
  "debugId": "8E2FE280FAAA615664756E2164756E21",
  "names": []
}