{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconReadingList/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 IconReadingList: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"reading-list, glasses, steve-jobs\"><path d=\"M22.25 12C22.25 14.3472 20.3472 16.25 18 16.25C15.6528 16.25 13.75 14.3472 13.75 12C13.75 9.65279 15.6528 7.75 18 7.75C20.3472 7.75 22.25 9.65279 22.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M6 16.25C8.34721 16.25 10.25 14.3472 10.25 12C10.25 9.65279 8.34721 7.75 6 7.75C3.65279 7.75 1.75 9.65279 1.75 12C1.75 14.3472 3.65279 16.25 6 16.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M0.75 9H0V10.5H0.75V9.75V9ZM0.75 9.75V10.5H2V9.75V9H0.75V9.75Z\" fill=\"currentColor\"/><path d=\"M23.25 10.5H24V9H23.25V9.75V10.5ZM22 9.75V10.5H23.25V9.75V9H22V9.75Z\" fill=\"currentColor\"/><path d=\"M14.0599 9.28239C13.4494 8.94319 12.7466 8.75 11.9987 8.75C11.2508 8.75 10.548 8.94319 9.9375 9.28239\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconReadingList;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAA+zB,EAA/zB,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,EAAE,8JAA8J,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,wJAAwJ,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,iEAAiE,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uEAAuE,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,wGAAwG,OAAO,eAAe,YAAY,MAAK,CAAI,GAGzzB",
  "debugId": "7D2EF49828F85D9A64756E2164756E21",
  "names": []
}