{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPushTheButton/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 IconPushTheButton: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"push-the-button, hot, alarm\"><path d=\"M19 7C19 8.10457 15.866 9 12 9C8.13401 9 5 8.10457 5 7M19 7C19 5.89543 15.866 5 12 5C8.13401 5 5 5.89543 5 7M19 7V14C19 15.1046 15.866 16 12 16C8.13401 16 5 15.1046 5 14V7M5 14.1067C3.14864 14.6253 2 15.3479 2 16.1471C2 17.7251 6.47715 19.0043 12 19.0043C17.5228 19.0043 22 17.7251 22 16.1471C22 15.3479 20.8514 14.6253 19 14.1067\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconPushTheButton;\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,gBAAyd,EAAzd,IAAqB,EAAO,UAAU,+BAA8B,gBAAC,OAAD,CAAM,EAAE,6UAA6U,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,GAGnd",
  "debugId": "0F60296F7927E82264756E2164756E21",
  "names": []
}