{"version":3,"sources":["../src/IconTeam/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTeam: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase\n      {...props}\n      ariaLabel=\"team, group, people, community, users\"\n    >\n      <path\n        d=\"M12 12C15.3137 12 18 14.6863 18 18V20H6V18C6 14.6863 8.68629 12 12 12Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M6.41113 13C5.22316 14.327 4.5 16.0788 4.5 18V19H0V18C0 15.2386 2.23858 13 5 13H6.41113Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M19 13C21.7614 13 24 15.2386 24 18V19H19.5V18C19.5 16.0788 18.7768 14.327 17.5889 13H19Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M4.5 6.25C6.01878 6.25 7.25 7.48122 7.25 9C7.25 10.5188 6.01878 11.75 4.5 11.75C2.98122 11.75 1.75 10.5188 1.75 9C1.75 7.48122 2.98122 6.25 4.5 6.25Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M19.5 6.25C21.0188 6.25 22.25 7.48122 22.25 9C22.25 10.5188 21.0188 11.75 19.5 11.75C17.9812 11.75 16.75 10.5188 16.75 9C16.75 7.48122 17.9812 6.25 19.5 6.25Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M12 3.5C13.933 3.5 15.5 5.067 15.5 7C15.5 8.933 13.933 10.5 12 10.5C10.067 10.5 8.5 8.933 8.5 7C8.5 5.067 10.067 3.5 12 3.5Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconTeam;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,yCAEVC,EAAA,cAAC,QACC,EAAE,yEACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2FACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2FACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+HACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTeam","props","React","CentralIconBase","IconTeam_default"]}