{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAudio/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 IconAudio: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"audio, music, playlist, musical-note\"><path d=\"M21.0022 2.75001C21.0022 2.51467 20.8917 2.29298 20.7039 2.15126C20.516 2.00953 20.2725 1.96421 20.0462 2.02885L9.544 5.02885C9.222 5.12083 9 5.41513 9 5.75001V16.1499C8.35535 15.7351 7.56365 15.5 6.75 15.5C4.81278 15.5 3 16.8329 3 18.75C3 20.6672 4.81278 22 6.75 22C8.68722 22 10.5 20.6672 10.5 18.75V6.31577L19.5022 3.74425V13.1499C18.8575 12.7351 18.0658 12.5 17.2522 12.5C15.315 12.5 13.5022 13.8329 13.5022 15.75C13.5022 17.6672 15.315 19 17.2522 19C19.1894 19 21.0022 17.6672 21.0022 15.75V2.75001Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAudio;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAumB,EAAvmB,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,EAAE,2fAA2f,KAAK,eAAc,CAAI,GAGjmB",
  "debugId": "D5D62BA1FA9EF6BB64756E2164756E21",
  "names": []
}