{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPeopleGear/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 IconPeopleGear: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"people-gear, user-settings, preferences, person\"><path d=\"M15.75 6.5C15.75 8.57107 14.0711 10.25 12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75C14.0711 2.75 15.75 4.42893 15.75 6.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M12 20.25H4.5C4.86894 16.3254 7.8098 13.25 12 13.25C12.3419 13.25 12.6755 13.2705 13 13.3102\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5088 14.6357L21.2363 14.3555L22.0488 15.7627L20.9609 17.1807L22.125 18.6055L21.3125 20.0127L19.54 19.7803L18.8887 21.5H17.2637L16.5449 19.7686L14.6875 20.0127L13.875 18.6055L15.0371 17.1807L13.9512 15.7627L14.7637 14.3555L16.5781 14.6504L17.2637 13H18.8887L19.5088 14.6357ZM18 15.5C17.0335 15.5 16.25 16.2835 16.25 17.25C16.25 18.2165 17.0335 19 18 19C18.9665 19 19.75 18.2165 19.75 17.25C19.75 16.2835 18.9665 15.5 18 15.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPeopleGear;\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,gBAAk8B,EAAl8B,IAAqB,EAAO,UAAU,mDAAkD,gBAAC,OAAD,CAAM,EAAE,8JAA8J,OAAO,eAAe,YAAY,MAAM,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,+FAA+F,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+aAA+a,KAAK,eAAc,CAAI,GAG57B",
  "debugId": "110F0547A06018C064756E2164756E21",
  "names": []
}