{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSiriGen2/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 IconSiriGen2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"siri-gen-2\"><path d=\"M12.0469 22C10.6678 22 9.37367 21.7386 8.16452 21.2157C6.95537 20.6993 5.89328 19.9837 4.97825 19.0686C4.06321 18.1536 3.34426 17.0915 2.82138 15.8824C2.30504 14.6732 2.04688 13.3791 2.04688 12C2.04688 10.6209 2.30504 9.3268 2.82138 8.11765C3.34426 6.9085 4.06321 5.84641 4.97825 4.93137C5.89328 4.0098 6.95537 3.29085 8.16452 2.77451C9.37367 2.25817 10.6678 2 12.0469 2C13.426 2 14.7201 2.25817 15.9292 2.77451C17.1384 3.29085 18.2005 4.0098 19.1155 4.93137C20.0305 5.84641 20.7462 6.9085 21.2626 8.11765C21.7854 9.3268 22.0469 10.6209 22.0469 12C22.0469 13.3791 21.7854 14.6732 21.2626 15.8824C20.7462 17.0915 20.0305 18.1536 19.1155 19.0686C18.2005 19.9837 17.1384 20.6993 15.9292 21.2157C14.7201 21.7386 13.426 22 12.0469 22ZM17.3704 13.7353C18.1547 13.7353 18.7985 13.4771 19.3018 12.9608C19.805 12.4444 20.0567 11.7582 20.0567 10.902C20.0567 9.98039 19.8508 9.08824 19.439 8.22549C19.0273 7.36275 18.4554 6.5915 17.7233 5.91176C16.9913 5.22549 16.1384 4.68301 15.1645 4.28431C14.1972 3.87908 13.158 3.67647 12.0469 3.67647C11.0338 3.67647 10.0992 3.83333 9.24295 4.14706C8.39328 4.46078 7.63511 4.88562 6.96844 5.42157C6.30178 5.95752 5.73315 6.55882 5.26256 7.22549C4.79851 7.89216 4.44557 8.58497 4.20374 9.30392C3.96191 10.0229 3.84099 10.719 3.84099 11.3922C3.84099 11.7647 3.90308 12.0327 4.02727 12.1961C4.15799 12.3529 4.33772 12.4314 4.56648 12.4314C4.82138 12.4248 5.07629 12.3562 5.33119 12.2255C5.59263 12.0948 5.88674 11.9477 6.21354 11.7843C6.54688 11.6209 6.93903 11.4771 7.39001 11.3529C7.84099 11.2222 8.38348 11.1569 9.01746 11.1569C9.58609 11.1569 10.1416 11.2451 10.6841 11.4216C11.2266 11.5915 11.7658 11.8072 12.3018 12.0686C12.8377 12.3235 13.3769 12.5784 13.9194 12.8333C14.4684 13.0882 15.0273 13.3039 15.5959 13.4804C16.1645 13.6503 16.756 13.7353 17.3704 13.7353ZM12.0469 20.3235C13.0077 20.3235 13.8998 20.1732 14.7233 19.8725C15.5534 19.5719 16.2756 19.1928 16.89 18.7353C17.5109 18.2712 17.9913 17.7974 18.3312 17.3137C18.6776 16.8235 18.8508 16.3889 18.8508 16.0098C18.8508 15.8268 18.8116 15.6993 18.7332 15.6275C18.6547 15.549 18.5142 15.5033 18.3116 15.4902C18.109 15.4771 17.8214 15.4706 17.4488 15.4706C16.7103 15.4706 16.0207 15.3856 15.3802 15.2157C14.7397 15.0392 14.1351 14.8235 13.5665 14.5686C13.0044 14.3137 12.4619 14.0588 11.939 13.8039C11.4162 13.549 10.8998 13.3366 10.39 13.1667C9.88674 12.9902 9.37694 12.902 8.8606 12.902C8.27237 12.902 7.73315 13.0098 7.24295 13.2255C6.75929 13.4346 6.37367 13.7451 6.08609 14.1569C5.79851 14.5686 5.65472 15.0784 5.65472 15.6863C5.65472 16.2549 5.81158 16.817 6.12531 17.3725C6.43903 17.9216 6.88348 18.4183 7.45864 18.8627C8.0338 19.3072 8.71027 19.6601 9.48805 19.9216C10.2658 20.1895 11.1188 20.3235 12.0469 20.3235Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSiriGen2;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAA2uF,EAA3uF,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,EAAE,ypFAAypF,KAAK,eAAc,CAAI,GAGruF",
  "debugId": "FA768FB2C80D9BE764756E2164756E21",
  "names": []
}