{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums/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 IconAlbums: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"albums, cover\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.2695 3.17415C11.4403 3.03166 11.6655 2.9723 11.8843 3.01213L20.3843 4.559C20.7408 4.62389 21 4.93446 21 5.29688V18.7031C21 19.0655 20.7408 19.3761 20.3843 19.441L11.8843 20.9879C11.6655 21.0277 11.4403 20.9684 11.2695 20.8259C11.0987 20.6834 11 20.4724 11 20.25V3.75001C11 3.52759 11.0987 3.31665 11.2695 3.17415ZM7.75 4.00001C8.16421 4.00001 8.5 4.33579 8.5 4.75001V19.25C8.5 19.6642 8.16421 20 7.75 20C7.33579 20 7 19.6642 7 19.25V4.75001C7 4.33579 7.33579 4.00001 7.75 4.00001ZM3.75 5.00001C4.16421 5.00001 4.5 5.33579 4.5 5.75001V18.25C4.5 18.6642 4.16421 19 3.75 19C3.33579 19 3 18.6642 3 18.25V5.75001C3 5.33579 3.33579 5.00001 3.75 5.00001Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAlbums;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAywB,EAAzwB,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8oBAA8oB,KAAK,eAAc,CAAI,GAGnwB",
  "debugId": "2A2D2B78292A18DF64756E2164756E21",
  "names": []
}