{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCourt/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 IconCourt: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"court\"><path d=\"M20.25 19.5C20.6642 19.5 21 19.8358 21 20.25C21 20.6643 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6643 3 20.25C3.00002 19.8358 3.3358 19.5 3.75 19.5H20.25Z\" fill=\"currentColor\"/><path d=\"M11.8799 2.00981C11.999 1.99049 12.1217 1.9996 12.2373 2.03813L20.4873 4.78813C20.7935 4.89021 21 5.17724 21 5.50004V9.25004C21 9.66426 20.6642 10 20.25 10H18.75V17.75C18.75 18.1643 18.4142 18.5 18 18.5C17.5858 18.5 17.25 18.1643 17.25 17.75V10H14.75V17.75C14.75 18.1643 14.4142 18.5 14 18.5C13.5858 18.5 13.25 18.1643 13.25 17.75V10H10.75V17.75C10.75 18.1643 10.4142 18.5 10 18.5C9.58579 18.5 9.25 18.1643 9.25 17.75V10H6.75V17.75C6.75 18.1643 6.41421 18.5 6 18.5C5.58579 18.5 5.25 18.1643 5.25 17.75V10H3.75C3.33579 10 3 9.66426 3 9.25004V5.50004L3.00977 5.3809C3.05354 5.10845 3.24477 4.87744 3.5127 4.78813L11.7627 2.03813L11.8799 2.00981Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCourt;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA64B,EAA74B,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,6JAA6J,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,soBAAsoB,KAAK,eAAc,CAAI,GAGv4B",
  "debugId": "E37F81A4D2EA8E2964756E2164756E21",
  "names": []
}