{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVoiceover/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 IconVoiceover: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"voiceover, sound\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11.5 7.5C11.1852 7.5 10.889 7.64858 10.7002 7.90039L9.7998 9.09961C9.61095 9.35142 9.31476 9.5 9 9.5H8.5C7.94772 9.5 7.5 9.94772 7.5 10.5V13.5C7.5 14.0523 7.94772 14.5 8.5 14.5H9C9.31476 14.5 9.61095 14.6486 9.7998 14.9004L10.7002 16.0996C10.889 16.3514 11.1852 16.5 11.5 16.5C12.0523 16.5 12.5 16.0523 12.5 15.5V8.5C12.5 7.94772 12.0523 7.5 11.5 7.5ZM14.916 9.37598C14.5714 9.14621 14.1057 9.23934 13.876 9.58398C13.6462 9.92863 13.7393 10.3943 14.084 10.624C15.1387 11.3272 15.1387 12.6728 14.084 13.376C13.7393 13.6057 13.6462 14.0714 13.876 14.416C14.1057 14.7607 14.5714 14.8538 14.916 14.624C16.8613 13.3272 16.8613 10.6728 14.916 9.37598Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconVoiceover;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAu3B,EAAv3B,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yvBAAyvB,KAAK,eAAc,CAAI,GAGj3B",
  "debugId": "3B64E63CD186EF1C64756E2164756E21",
  "names": []
}