{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMouseDown/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 IconMouseDown: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"mouse-down, press, depth, deep-dive\"><path d=\"M18.3379 10.3643C18.5326 9.9989 18.987 9.86026 19.3525 10.0547C21.1452 11.0086 22.4998 12.4412 22.5 14.2188C22.5 16.0326 21.0907 17.4864 19.2383 18.4424C17.3473 19.4181 14.7869 20 12 20C9.21308 20 6.65274 19.4181 4.76172 18.4424C2.90926 17.4864 1.5 16.0326 1.5 14.2188C1.50017 12.4412 2.8548 11.0086 4.64746 10.0547C5.01299 9.86026 5.46745 9.9989 5.66211 10.3643C5.85663 10.7298 5.718 11.1843 5.35254 11.3789C3.74124 12.2363 3.00017 13.274 3 14.2188C3 15.1832 3.77343 16.2445 5.44922 17.1094C7.087 17.9545 9.40214 18.5 12 18.5C14.5979 18.5 16.913 17.9545 18.5508 17.1094C20.2266 16.2445 21 15.1832 21 14.2188C20.9998 13.274 20.2588 12.2363 18.6475 11.3789C18.282 11.1843 18.1434 10.7298 18.3379 10.3643Z\" fill=\"currentColor\"/><path d=\"M12 4C12.4142 4 12.75 4.33579 12.75 4.75V13.1895L14.9697 10.9697C15.2626 10.6768 15.7374 10.6768 16.0303 10.9697C16.3232 11.2626 16.3232 11.7374 16.0303 12.0303L12.5303 15.5303C12.3896 15.6709 12.1989 15.75 12 15.75C11.8011 15.75 11.6104 15.6709 11.4697 15.5303L7.96973 12.0303C7.67684 11.7374 7.67684 11.2626 7.96973 10.9697C8.26262 10.6768 8.73738 10.6768 9.03027 10.9697L11.25 13.1895V4.75C11.25 4.33579 11.5858 4 12 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMouseDown;\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,gBAAmvC,EAAnvC,IAAqB,EAAO,UAAU,uCAAsC,gBAAC,OAAD,CAAM,EAAE,ksBAAksB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yaAAya,KAAK,eAAc,CAAI,GAG7uC",
  "debugId": "F2A46D3CA2AA0D4464756E2164756E21",
  "names": []
}