{"version":3,"sources":["../src/IconGroup3/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGroup3: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"group-3\">\n      <path\n        d=\"M4.00195 7C4.00195 4.79086 5.79281 3 8.00195 3C10.2111 3 12.002 4.79086 12.002 7C12.002 9.20914 10.2111 11 8.00195 11C5.79281 11 4.00195 9.20914 4.00195 7Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M13.502 7.5C13.502 5.567 15.069 4 17.002 4C18.9349 4 20.502 5.567 20.502 7.5C20.502 9.433 18.9349 11 17.002 11C15.069 11 13.502 9.433 13.502 7.5Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M8.00215 12C5.84994 12 4.15088 12.9424 2.97027 14.4633C1.80688 15.962 1.1652 17.9927 1.00415 20.1953L0.945312 21H15.059L15.0002 20.1953C14.8391 17.9927 14.1974 15.962 13.034 14.4633C11.8534 12.9424 10.1544 12 8.00215 12Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M16.4896 20C16.3034 17.6273 15.5975 15.3194 14.2188 13.5435C14.0692 13.3507 13.9123 13.1652 13.7483 12.9876C14.6476 12.3593 15.7384 12 17.0021 12C18.9209 12 20.4411 12.8285 21.4978 14.1691C22.5374 15.4881 23.1072 17.2701 23.25 19.1945L23.3098 20H16.4896Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconGroup3;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,WACpCC,EAAA,cAAC,QACC,EAAE,8JACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+NACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iQACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGroup3","props","React","CentralIconBase","IconGroup3_default"]}