{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRobotHeadSlop/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 IconRobotHeadSlop: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"robot-head-slop\"><path d=\"M13.0977 12.5C13.3327 12.5 13.5338 12.6632 13.5684 12.8955C13.7967 14.425 14.2081 18.5864 15.1964 18.7686C16.8811 19.0784 18.0001 19.6262 18.0001 20.25C18.0001 21.2165 15.3138 22 12.0001 22C8.68651 22 6.00009 21.2165 6.00009 20.25C6.00009 19.6262 7.11943 19.0785 8.8038 18.7686C9.79213 18.5863 10.2033 14.4251 10.4317 12.8955C10.4664 12.6633 10.6676 12.5001 10.9024 12.5H13.0977Z\" fill=\"currentColor\"/><path d=\"M2.14462 18.4463C2.44275 18.0195 3.1038 17.8737 3.6202 18.1201C4.13677 18.3668 5.24837 19.3584 4.95028 19.7852C4.652 20.2119 3.05659 19.9124 2.54013 19.666C2.02389 19.4196 1.84669 18.8731 2.14462 18.4463Z\" fill=\"currentColor\"/><path d=\"M20.38 18.1201C20.8964 17.8737 21.5574 18.0195 21.8556 18.4463C22.1537 18.8732 21.9765 19.4196 21.46 19.666C20.9432 19.9124 19.348 20.2119 19.0499 19.7852C18.7523 19.3584 19.8633 18.3671 20.38 18.1201Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.0001 2C12.4141 2.00026 12.7501 2.33595 12.7501 2.75V3H16.7501C18.5194 3 20.0009 4.22572 20.3956 5.87402C21.0424 6.13103 21.5001 6.76163 21.5001 7.5V8.5C21.5001 9.19772 21.0908 9.79804 20.5001 10.0791V12.25C20.5001 14.8734 18.3734 17 15.7501 17H15.2813C15.2288 16.81 15.176 16.5993 15.1261 16.3701C14.896 15.3137 14.7403 14.0809 14.6202 13.1982C14.6341 13.2028 14.6483 13.2073 14.6622 13.2119C15.0551 13.3429 15.4804 13.1302 15.6114 12.7373C15.7424 12.3443 15.5298 11.919 15.1368 11.7881C12.9826 11.0703 11.0166 11.0702 8.86239 11.7881C8.46965 11.9192 8.25691 12.3445 8.38778 12.7373C8.51873 13.1302 8.94412 13.3427 9.337 13.2119C9.3509 13.2073 9.36512 13.2028 9.37899 13.1982C9.25879 14.0809 9.1043 15.3138 8.87411 16.3701C8.82415 16.5994 8.77056 16.81 8.71786 17H8.25009C5.62687 16.9998 3.50009 14.8733 3.50009 12.25V10.2373C2.90945 9.95621 2.5001 9.35586 2.50009 8.6582V7.5C2.50009 6.762 2.9573 6.13128 3.6036 5.87402C3.99813 4.22565 5.48082 3.00013 7.25009 3H11.2501V2.75C11.2501 2.33588 11.586 2.00015 12.0001 2ZM9.25009 6.75C8.42179 6.75015 7.75009 7.42167 7.75009 8.25C7.75009 9.07833 8.42179 9.74985 9.25009 9.75C10.0785 9.75 10.7501 9.07843 10.7501 8.25C10.7501 7.42157 10.0785 6.75 9.25009 6.75ZM14.7501 6.75C13.9218 6.75015 13.2501 7.42167 13.2501 8.25C13.2501 9.07833 13.9218 9.74985 14.7501 9.75C15.5785 9.75 16.2501 9.07843 16.2501 8.25C16.2501 7.42157 15.5785 6.75 14.7501 6.75Z\" fill=\"currentColor\"/><path d=\"M13.8106 14.0186H13.8048C13.8131 14.0163 13.8224 14.0146 13.8224 14.0146C13.8197 14.0154 13.8148 14.0174 13.8106 14.0186Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRobotHeadSlop;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAA6/E,EAA7/E,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,8XAA8X,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+MAA+M,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,u3CAAu3C,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4HAA4H,KAAK,eAAc,CAAI,GAGv/E",
  "debugId": "ABF4E4489650199764756E2164756E21",
  "names": []
}