{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTeddyBear/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 IconTeddyBear: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"teddy-bear, play\"><path d=\"M10.5808 8.82263C10.3796 8.53558 10.5727 8.18767 10.9554 8.10982C11.6752 7.96339 12.3248 7.96339 13.0446 8.10982C13.4273 8.18767 13.6204 8.53558 13.4192 8.82263C13.125 9.24226 12.6374 9.75 12 9.75C11.3626 9.75 10.875 9.24226 10.5808 8.82263Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5 5.38889C5 3.52665 6.49238 2 8.35417 2C8.89755 2 9.41166 2.13104 9.86606 2.36316C10.5302 2.1281 11.25 2 12 2C12.75 2 13.4698 2.1281 14.1339 2.36316C14.5883 2.13104 15.1025 2 15.6458 2C17.5076 2 19 3.52665 19 5.38889C19 6.35943 18.5953 7.2368 17.9463 7.85512C17.8655 9.04225 17.3821 10.1127 16.6291 10.9658L18.9041 11.5977C20.1428 11.9418 21 13.0696 21 14.3552C21 15.0901 20.7173 15.7968 20.2105 16.329L19.8804 16.6756C20.2706 17.2262 20.5 17.8988 20.5 18.625C20.5 20.489 18.989 22 17.125 22C15.8188 22 14.6859 21.258 14.1249 20.1725C12.6846 20.6092 11.3154 20.6092 9.8751 20.1725C9.31406 21.258 8.18118 22 6.875 22C5.01104 22 3.5 20.489 3.5 18.625C3.5 17.8988 3.72936 17.2262 4.1196 16.6756L3.78949 16.329C3.28269 15.7968 3 15.0901 3 14.3552C3 13.0696 3.85725 11.9418 5.09594 11.5977L7.37086 10.9658C6.61794 10.1127 6.13454 9.04225 6.05371 7.85512C5.40465 7.2368 5 6.35943 5 5.38889ZM8.35417 3.5C7.33947 3.5 6.5 4.33629 6.5 5.38889C6.5 6.01045 6.79362 6.55914 7.24591 6.9034C7.43226 7.04524 7.54166 7.26598 7.54167 7.50016C7.54176 9.64571 9.47128 11.5 12 11.5C14.5287 11.5 16.4582 9.6457 16.4583 7.50016C16.4583 7.26597 16.5677 7.04523 16.7541 6.9034C17.2064 6.55914 17.5 6.01045 17.5 5.38889C17.5 4.33629 16.6605 3.5 15.6458 3.5C15.2663 3.5 14.9149 3.61539 14.621 3.81442C14.4101 3.95731 14.1411 3.98334 13.9066 3.88355C13.3307 3.63836 12.6849 3.5 12 3.5C11.3151 3.5 10.6693 3.63836 10.0934 3.88355C9.85895 3.98334 9.5899 3.9573 9.37897 3.81442C9.08515 3.61539 8.73371 3.5 8.35417 3.5ZM18.7633 15.6736L19.1243 15.2945C19.3655 15.0412 19.5 14.7049 19.5 14.3552C19.5 13.7435 19.0921 13.2067 18.5026 13.043L16.4564 12.4746C16.7971 13.3063 16.9903 14.2133 16.9996 15.2523C17.0412 15.2508 17.083 15.25 17.125 15.25C17.7195 15.25 18.2781 15.4037 18.7633 15.6736ZM5.49741 13.043L7.54361 12.4746C7.20291 13.3063 7.00971 14.2133 7.00036 15.2523C6.95876 15.2508 6.91697 15.25 6.875 15.25C6.28048 15.25 5.72187 15.4037 5.23674 15.6736L4.8757 15.2945C4.63452 15.0412 4.5 14.7049 4.5 14.3552C4.5 13.7435 4.90794 13.2067 5.49741 13.043ZM6.875 16.75C5.83947 16.75 5 17.5895 5 18.625C5 19.6605 5.83947 20.5 6.875 20.5C7.91053 20.5 8.75 19.6605 8.75 18.625C8.75 17.5895 7.91053 16.75 6.875 16.75ZM15.25 18.625C15.25 17.5895 16.0895 16.75 17.125 16.75C18.1605 16.75 19 17.5895 19 18.625C19 19.6605 18.1605 20.5 17.125 20.5C16.0895 20.5 15.25 19.6605 15.25 18.625Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTeddyBear;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA8rF,EAA9rF,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+yEAA+yE,KAAK,eAAc,CAAI,GAGxrF",
  "debugId": "5050B25F16FA024F64756E2164756E21",
  "names": []
}