{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTouch/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 IconTouch: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"touch, tab, click\"><path d=\"M13.0269 8.91667V12H16.138C17.8562 12 19.2491 13.3805 19.2491 15.0833V16.1111C19.2491 18.9492 16.9276 21.25 14.0639 21.25H13.1729C11.7859 21.25 10.4907 20.563 9.72139 19.4193L6.80469 15.0833L7.00457 14.5881C7.45522 13.4715 8.77254 12.9751 9.85785 13.513L9.9158 13.5417V8.91667C9.9158 8.06523 10.6122 7.375 11.4714 7.375C12.3305 7.375 13.0269 8.06523 13.0269 8.91667Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M17.6944 8.91667C17.6944 5.51091 14.9087 2.75 11.4722 2.75C8.03578 2.75 5.25 5.51091 5.25 8.91667C5.25 9.63742 5.37476 10.3293 5.60406 10.9722\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconTouch;\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,gBAAgqB,EAAhqB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,iXAAiX,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,iJAAiJ,OAAO,eAAe,YAAY,MAAK,CAAI,GAG1pB",
  "debugId": "4FD78A939792467164756E2164756E21",
  "names": []
}