{
  "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=\"M16.6342 4.56343C18.0715 4.15285 19.5022 5.23209 19.5022 6.72689V13.1498C18.8575 12.7351 18.0658 12.4999 17.2522 12.4999C15.315 12.4999 13.5022 13.8328 13.5022 15.7499C13.5022 17.6671 15.315 18.9999 17.2522 18.9999C19.1894 18.9999 21.0022 17.6671 21.0022 15.7499V6.72689C21.0022 4.23555 18.6177 2.43683 16.2222 3.12112L11.72 4.40719C10.11 4.86709 9 6.33859 9 8.01296V16.1498C8.35535 15.7351 7.56365 15.4999 6.75 15.4999C4.81278 15.4999 3 16.8328 3 18.7499C3 20.6671 4.81278 21.9999 6.75 21.9999C8.68722 21.9999 10.5 20.6671 10.5 18.7499V8.01296C10.5 7.00834 11.166 6.12544 12.132 5.8495L16.6342 4.56343Z\" 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,gBAA0sB,EAA1sB,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,EAAE,8lBAA8lB,KAAK,eAAc,CAAI,GAGpsB",
  "debugId": "361C59135B0B437964756E2164756E21",
  "names": []
}