{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVoiceControl/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\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  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\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      {masked ? (\n        <>\n          <mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <g fill=\"none\" style={{ color: \"#fff\" }}>\n              {children}\n            </g>\n          </mask>\n          <rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVoiceControl: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} ariaLabel=\"voice-control\" maskId=\"round-filled-radius-0-stroke-1.5-IconVoiceControl\"><path d=\"M11.9999 4C12.4141 4 12.7499 4.33579 12.7499 4.75V19.25C12.7499 19.6642 12.4141 20 11.9999 20C11.5858 19.9999 11.2499 19.6642 11.2499 19.25V4.75C11.2499 4.33584 11.5858 4.00008 11.9999 4Z\" fill=\"currentColor\"/><path d=\"M7.99991 7C8.41412 7 8.74991 7.33579 8.74991 7.75V16.25C8.74991 16.6642 8.41412 17 7.99991 17C7.58576 16.9999 7.24991 16.6642 7.24991 16.25V7.75C7.24991 7.33584 7.58576 7.00008 7.99991 7Z\" fill=\"currentColor\"/><path d=\"M15.9999 7C16.4141 7 16.7499 7.33579 16.7499 7.75V16.25C16.7499 16.6642 16.4141 17 15.9999 17C15.5858 16.9999 15.2499 16.6642 15.2499 16.25V7.75C15.2499 7.33584 15.5858 7.00008 15.9999 7Z\" fill=\"currentColor\"/><path d=\"M3.93741 9.64941C4.26472 9.38762 4.7497 9.62098 4.74991 10.04V13.96C4.7497 14.379 4.26472 14.6124 3.93741 14.3506L1.48819 12.3906C1.23799 12.1905 1.23799 11.8095 1.48819 11.6094L3.93741 9.64941Z\" fill=\"currentColor\"/><path d=\"M19.2499 10.04C19.2501 9.62105 19.7351 9.38785 20.0624 9.64941L22.5116 11.6094C22.7618 11.8095 22.7618 12.1905 22.5116 12.3906L20.0624 14.3506C19.7351 14.6121 19.2501 14.3789 19.2499 13.96V10.04Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconVoiceControl;\n"
  ],
  "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,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,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAysC,EAAzsC,IAAqB,EAAO,UAAU,gBAAgB,OAAO,qDAAoD,gBAAC,OAAD,CAAM,EAAE,8LAA8L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8LAA8L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8LAA8L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qMAAqM,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sMAAsM,KAAK,eAAc,CAAI,EACjtC,EAEc",
  "debugId": "2A82AC60BD91D35364756E2164756E21",
  "names": []
}