{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMouseScrollUp/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 IconMouseScrollUp: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"mouse-scroll-up\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.37596 4.41603C8.60573 4.76067 9.07138 4.8538 9.41602 4.62404L12 2.90139L14.584 4.62404C14.9286 4.8538 15.3943 4.76067 15.624 4.41603C15.8538 4.07138 15.7607 3.60573 15.416 3.37596L12.416 1.37596C12.1641 1.20801 11.8359 1.20801 11.584 1.37596L8.58397 3.37596C8.23933 3.60573 8.1462 4.07138 8.37596 4.41603Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6 12C6 8.68629 8.68629 6 12 6C15.3137 6 18 8.68629 18 12V17C18 20.3137 15.3137 23 12 23C8.68629 23 6 20.3137 6 17V12ZM12.75 10.75C12.75 10.3358 12.4142 10 12 10C11.5858 10 11.25 10.3358 11.25 10.75V13.25C11.25 13.6642 11.5858 14 12 14C12.4142 14 12.75 13.6642 12.75 13.25V10.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMouseScrollUp;\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,gBAAixB,EAAjxB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uTAAuT,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0RAA0R,KAAK,eAAc,CAAI,GAG3wB",
  "debugId": "03232AC6B4493F8A64756E2164756E21",
  "names": []
}