{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPeopleCopy/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 IconPeopleCopy: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"people-copy, members\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.75 2C2.7835 2 2 2.7835 2 3.75V16.25C2 17.2165 2.7835 18 3.75 18H6V20.25C6 21.2165 6.7835 22 7.75 22H20.25C21.2165 22 22 21.2165 22 20.25V7.75C22 6.7835 21.2165 6 20.25 6H18V3.75C18 2.7835 17.2165 2 16.25 2H3.75ZM7.75 6H16.5V3.75C16.5 3.61193 16.3881 3.5 16.25 3.5H3.75C3.61193 3.5 3.5 3.61193 3.5 3.75V16.25C3.5 16.3881 3.61193 16.5 3.75 16.5H6V7.75C6 6.7835 6.7835 6 7.75 6ZM14 16.5C11.9345 16.5 10.1422 17.8616 9.24946 19.8556C9.1103 20.1665 9.35066 20.5 9.69122 20.5H18.3088C18.6493 20.5 18.8897 20.1665 18.7505 19.8556C17.8578 17.8616 16.0655 16.5 14 16.5ZM14 15C15.3807 15 16.5 13.8807 16.5 12.5C16.5 11.1193 15.3807 10 14 10C12.6193 10 11.5 11.1193 11.5 12.5C11.5 13.8807 12.6193 15 14 15Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPeopleCopy;\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,gBAA+zB,EAA/zB,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6rBAA6rB,KAAK,eAAc,CAAI,GAGzzB",
  "debugId": "8818E3369C3FB51564756E2164756E21",
  "names": []
}