{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPeopleSparkles/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 IconPeopleSparkles: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"people-sparkles, star, aura\"><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 13.25C7.8098 13.25 4.86894 16.3254 4.5 20.25H12\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M17.95 12H17.05L15.925 14.925L13 16.05V16.95L15.925 18.075L17.05 21H17.95L19.075 18.075L22 16.95V16.05L19.075 14.925L17.95 12Z\" fill=\"currentColor\"/><path d=\"M4.3 7.5H3.7L2.95 9.45L1 10.2V10.8L2.95 11.55L3.7 13.5H4.3L5.05 11.55L7 10.8V10.2L5.05 9.45L4.3 7.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPeopleSparkles;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAqrB,EAArrB,IAAqB,EAAO,UAAU,+BAA8B,gBAAC,OAAD,CAAM,EAAE,8JAA8J,OAAO,eAAe,YAAY,MAAM,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,sDAAsD,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,iIAAiI,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uGAAuG,KAAK,eAAc,CAAI,GAG/qB",
  "debugId": "C8C289DC1CEA67F564756E2164756E21",
  "names": []
}