{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMouseScrollDown/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 IconMouseScrollDown: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"mouse-scroll-down\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.37596 19.834C8.60573 19.4893 9.07138 19.3962 9.41602 19.626L11.3066 20.8864C11.7265 21.1663 12.2735 21.1663 12.6934 20.8864L14.584 19.626C14.9286 19.3962 15.3943 19.4893 15.624 19.834C15.8538 20.1786 15.7607 20.6443 15.416 20.874L13.5254 22.1344C12.6017 22.7503 11.3983 22.7503 10.4746 22.1344L8.58397 20.874C8.23933 20.6443 8.1462 20.1786 8.37596 19.834Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6 7C6 3.68629 8.68629 1 12 1C15.3137 1 18 3.68629 18 7V12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12V7ZM12.75 5.75C12.75 5.33579 12.4142 5 12 5C11.5858 5 11.25 5.33579 11.25 5.75V8.25C11.25 8.66421 11.5858 9 12 9C12.4142 9 12.75 8.66421 12.75 8.25V5.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMouseScrollDown;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAuzB,EAAvzB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yWAAyW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4QAA4Q,KAAK,eAAc,CAAI,GAGjzB",
  "debugId": "1485B5585DE5DC2664756E2164756E21",
  "names": []
}