{
  "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=\"M6 12C6 8.68628 8.68629 5.99999 12 5.99999C15.3137 5.99999 18 8.68628 18 12V17C18 20.3137 15.3137 23 12 23C8.68629 23 6 20.3137 6 17V12ZM12.75 10.75C12.75 10.3358 12.4142 9.99999 12 9.99999C11.5858 9.99999 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\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.37596 4.41601C8.60573 4.76066 9.07138 4.85379 9.41602 4.62402L11.3066 3.36362C11.7265 3.08371 12.2735 3.08371 12.6934 3.36362L14.584 4.62402C14.9286 4.85379 15.3943 4.76066 15.624 4.41601C15.8538 4.07136 15.7607 3.60571 15.416 3.37595L13.5254 2.11555C12.6017 1.49973 11.3983 1.49973 10.4746 2.11555L8.58397 3.37595C8.23933 3.60571 8.1462 4.07136 8.37596 4.41601Z\" 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,gBAA22B,EAA32B,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2TAA2T,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gXAAgX,KAAK,eAAc,CAAI,GAGr2B",
  "debugId": "E8712DCD4E8F52A664756E2164756E21",
  "names": []
}