{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMicrophone/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 IconMicrophone: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"microphone, mic, sound, podcast\"><path d=\"M7.00122 7C7.00122 4.23858 9.2398 2 12.0012 2C14.7626 2 17.0012 4.23858 17.0012 7V11.5C17.0012 14.2614 14.7626 16.5 12.0012 16.5C9.2398 16.5 7.00122 14.2614 7.00122 11.5V7Z\" fill=\"currentColor\"/><path d=\"M5.81245 14.1997C5.64662 13.8201 5.20448 13.6468 4.82491 13.8127C4.44535 13.9785 4.27209 14.4207 4.43793 14.8002C5.61525 17.4948 8.19176 19.4406 11.2511 19.7163V21.2499C11.2511 21.6642 11.5869 21.9999 12.0011 21.9999C12.4153 21.9999 12.7511 21.6642 12.7511 21.2499V19.7163C15.8105 19.4406 18.387 17.4948 19.5643 14.8002C19.7302 14.4207 19.5569 13.9785 19.1773 13.8127C18.7978 13.6468 18.3556 13.8201 18.1898 14.1997C17.1475 16.5852 14.7679 18.2499 12.0011 18.2499C9.23436 18.2499 6.85474 16.5852 5.81245 14.1997Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMicrophone;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAszB,EAAtzB,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,+KAA+K,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mgBAAmgB,KAAK,eAAc,CAAI,GAGhzB",
  "debugId": "AE429841C6E237E964756E2164756E21",
  "names": []
}