{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCuteRobot/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 IconCuteRobot: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"cute-robot\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1C12.4142 1 12.75 1.33579 12.75 1.75V3H16.2188C18.2898 3 19.9688 4.67893 19.9688 6.75V10.25C19.9688 11.2179 19.6021 12.1002 19 12.7654V13.9393L20.7803 15.7197C21.0732 16.0126 21.0732 16.4874 20.7803 16.7803C20.4874 17.0732 20.0126 17.0732 19.7197 16.7803L18.9304 15.991C18.449 19.3877 15.5296 22 12 22C8.47043 22 5.55099 19.3877 5.06961 15.991L4.28033 16.7803C3.98744 17.0732 3.51256 17.0732 3.21967 16.7803C2.92678 16.4874 2.92678 16.0126 3.21967 15.7197L5 13.9393V12.7654C4.39795 12.1002 4.03125 11.2179 4.03125 10.25V6.75C4.03125 4.67893 5.71018 3 7.78125 3H11.25V1.75C11.25 1.33579 11.5858 1 12 1ZM7.78125 4.5C6.53861 4.5 5.53125 5.50736 5.53125 6.75V10.25C5.53125 11.4926 6.53861 12.5 7.78125 12.5H16.2188C17.4614 12.5 18.4688 11.4926 18.4688 10.25V6.75C18.4688 5.50736 17.4614 4.5 16.2188 4.5H7.78125ZM8.75 7C9.16421 7 9.5 7.33579 9.5 7.75V9.25C9.5 9.66421 9.16421 10 8.75 10C8.33579 10 8 9.66421 8 9.25V7.75C8 7.33579 8.33579 7 8.75 7ZM15.25 7C15.6642 7 16 7.33579 16 7.75V9.25C16 9.66421 15.6642 10 15.25 10C14.8358 10 14.5 9.66421 14.5 9.25V7.75C14.5 7.33579 14.8358 7 15.25 7Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCuteRobot;\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,gBAA6rC,EAA7rC,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qkCAAqkC,KAAK,eAAc,CAAI,GAGvrC",
  "debugId": "BA1B096C605C1D9264756E2164756E21",
  "names": []
}