{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBowling/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 IconBowling: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bowling\"><path d=\"M14.8984 8.25C14.8984 9.07843 14.2269 9.75 13.3984 9.75C12.57 9.75 11.8984 9.07843 11.8984 8.25C11.8984 7.42157 12.57 6.75 13.3984 6.75C14.2269 6.75 14.8984 7.42157 14.8984 8.25Z\" fill=\"currentColor\"/><circle cx=\"16.5\" cy=\"11.5\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"12.25\" cy=\"12.5\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconBowling;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAic,EAAjc,IAAqB,EAAO,UAAU,WAAU,gBAAC,OAAD,CAAM,EAAE,qLAAqL,KAAK,eAAc,EAAE,gBAAC,SAAD,CAAQ,GAAG,OAAO,GAAG,OAAO,EAAE,MAAM,KAAK,eAAc,EAAE,gBAAC,SAAD,CAAQ,GAAG,QAAQ,GAAG,OAAO,EAAE,MAAM,KAAK,eAAc,EAAE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,eAAe,YAAY,MAAK,CAAI,GAG3b",
  "debugId": "6848EF6FE0D53E4D64756E2164756E21",
  "names": []
}