{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVersusCircle/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 IconVersusCircle: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"versus-circle, vs\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM12.6499 10C12.6499 9.0335 13.4334 8.25 14.3999 8.25H15.8999C16.8664 8.25 17.6499 9.0335 17.6499 10C17.6499 10.4142 17.3141 10.75 16.8999 10.75C16.4857 10.75 16.1499 10.4142 16.1499 10C16.1499 9.86193 16.038 9.75 15.8999 9.75H14.3999C14.2618 9.75 14.1499 9.86193 14.1499 10V11C14.1499 11.1381 14.2618 11.25 14.3999 11.25H15.8999C16.8664 11.25 17.6499 12.0335 17.6499 13V14C17.6499 14.9665 16.8664 15.75 15.8999 15.75H14.3999C13.4334 15.75 12.6499 14.9665 12.6499 14C12.6499 13.5858 12.9857 13.25 13.3999 13.25C13.8141 13.25 14.1499 13.5858 14.1499 14C14.1499 14.1381 14.2618 14.25 14.3999 14.25H15.8999C16.038 14.25 16.1499 14.1381 16.1499 14V13C16.1499 12.8619 16.038 12.75 15.8999 12.75H14.3999C13.4334 12.75 12.6499 11.9665 12.6499 11V10ZM7.72761 8.8181C7.62715 8.41625 7.21994 8.17193 6.8181 8.27239C6.41625 8.37285 6.17193 8.78006 6.27239 9.1819L7.77239 15.1819C7.85586 15.5158 8.15585 15.75 8.5 15.75H9.5C9.84415 15.75 10.1441 15.5158 10.2276 15.1819L11.7276 9.1819C11.8281 8.78006 11.5837 8.37285 11.1819 8.27239C10.7801 8.17193 10.3729 8.41625 10.2724 8.8181L9 13.9077L7.72761 8.8181Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconVersusCircle;\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,gBAAuzC,EAAvzC,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wrCAAwrC,KAAK,eAAc,CAAI,GAGjzC",
  "debugId": "65CE1D6175AC16C964756E2164756E21",
  "names": []
}