{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonX/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 IconControllerButtonX: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"controller-button-x, dismiss, close, cancel, delete, remove\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.1553 7.84473C15.8624 7.55183 15.3876 7.55183 15.0947 7.84473L12 10.9395L8.90527 7.84473C8.61238 7.55183 8.13762 7.55183 7.84473 7.84473C7.55183 8.13762 7.55183 8.61238 7.84473 8.90527L10.9395 12L7.84473 15.0947C7.55183 15.3876 7.55183 15.8624 7.84473 16.1553C8.13762 16.4481 8.61239 16.4482 8.90527 16.1553L12 13.0605L15.0947 16.1553C15.3876 16.4481 15.8624 16.4482 16.1553 16.1553C16.4482 15.8624 16.4481 15.3876 16.1553 15.0947L13.0605 12L16.1553 8.90527C16.4482 8.61239 16.4481 8.13762 16.1553 7.84473Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonX;\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,EAAwD,CAAC,IAAU,CAC9E,OAAO,gBAAyxB,EAAzxB,IAAqB,EAAO,UAAU,+DAA8D,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gnBAAgnB,KAAK,eAAc,CAAI,GAGnxB",
  "debugId": "A81ECC1DD207163964756E2164756E21",
  "names": []
}