{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCirclePerson/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 IconCirclePerson: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"circle-person, accessibility, a11y\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM12 6.5C11.1716 6.5 10.5 7.17157 10.5 8C10.5 8.82843 11.1716 9.5 12 9.5C12.8284 9.5 13.5 8.82843 13.5 8C13.5 7.17157 12.8284 6.5 12 6.5ZM11.2407 11.6834C11.1699 13.2501 10.6131 14.4679 9.31529 15.7077C9.01576 15.9938 9.00489 16.4685 9.291 16.768C9.57711 17.0676 10.0519 17.0784 10.3514 16.7923C11.0847 16.0919 11.6343 15.3746 12.021 14.6089C12.4136 15.3682 12.9522 16.0769 13.629 16.7729C13.9177 17.0698 14.3926 17.0765 14.6895 16.7877C14.9865 16.4989 14.9931 16.0241 14.7044 15.7271C13.4602 14.4476 12.841 13.2299 12.7582 11.6834C13.2466 11.6576 13.7527 11.613 14.18 11.5697C14.571 11.5301 14.9604 11.4831 15.3495 11.433C15.7604 11.3801 16.0484 11.0019 15.9932 10.5914C15.9381 10.1808 15.5607 9.89354 15.1499 9.94637C14.7769 9.99433 14.4036 10.0393 14.0287 10.0773C13.3808 10.143 12.5994 10.2059 11.9996 10.2059C11.3997 10.2059 10.6185 10.143 9.97075 10.0773C9.59603 10.0393 9.22287 9.99434 8.84996 9.94637C8.43913 9.89352 8.06173 10.1808 8.00659 10.5913C7.95144 11.0018 8.23944 11.3801 8.65026 11.433C9.03927 11.4831 9.42853 11.5301 9.81941 11.5697C10.2466 11.613 10.7524 11.6575 11.2407 11.6834Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCirclePerson;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAA60C,EAA70C,IAAqB,EAAO,UAAU,sCAAqC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6rCAA6rC,KAAK,eAAc,CAAI,GAGv0C",
  "debugId": "622714CEAE58174F64756E2164756E21",
  "names": []
}