{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRobot/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 IconRobot: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"robot\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C12.4142 2 12.75 2.33579 12.75 2.75V4H17.75C19.8211 4 21.5 5.67893 21.5 7.75V8.08535C22.0826 8.29127 22.5 8.84689 22.5 9.5V10.5C22.5 11.1531 22.0826 11.7087 21.5 11.9146V16.25C21.5 18.3211 19.8211 20 17.75 20H6.25C4.17893 20 2.5 18.3211 2.5 16.25V11.9146C1.9174 11.7087 1.5 11.1531 1.5 10.5V9.5C1.5 8.84689 1.9174 8.29127 2.5 8.08535V7.75C2.5 5.67893 4.17893 4 6.25 4H11.25V2.75C11.25 2.33579 11.5858 2 12 2ZM7 10C7 9.17157 7.67157 8.5 8.5 8.5C9.32843 8.5 10 9.17157 10 10C10 10.8284 9.32843 11.5 8.5 11.5C7.67157 11.5 7 10.8284 7 10ZM14 10C14 9.17157 14.6716 8.5 15.5 8.5C16.3284 8.5 17 9.17157 17 10C17 10.8284 16.3284 11.5 15.5 11.5C14.6716 11.5 14 10.8284 14 10ZM9 14.5C9 14.0858 9.33579 13.75 9.75 13.75H14.25C14.6642 13.75 15 14.0858 15 14.5C15 14.9142 14.6642 15.25 14.25 15.25H9.75C9.33579 15.25 9 14.9142 9 14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRobot;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAg7B,EAAh7B,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6zBAA6zB,KAAK,eAAc,CAAI,GAG16B",
  "debugId": "2E143D114F27E75464756E2164756E21",
  "names": []
}