{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFrisbeeGolf/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 IconFrisbeeGolf: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"frisbee-golf\"><path d=\"M5.36586 16.25C2.49356 12.8132 1.87674 8.14485 2.76863 3.75H15.2353C15.848 6.63285 15.8988 10.3133 14.7158 13.1271\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M2 16.25H7\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><ellipse cx=\"14\" cy=\"16.5\" rx=\"7.25\" ry=\"3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><ellipse cx=\"14\" cy=\"15.25\" rx=\"4.75\" ry=\"2.5\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M6.77966 3.75C6.10158 7.16899 6.33846 11.1888 8.11466 14.25M11.2097 3.75C11.8291 6.873 11.6851 10.4973 10.3018 13.4344\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconFrisbeeGolf;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAqnB,EAArnB,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,qHAAqH,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,UAAD,CAAS,GAAG,KAAK,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,UAAD,CAAS,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,yHAAyH,OAAO,eAAe,YAAY,MAAK,CAAI,GAG/mB",
  "debugId": "F8F495F863DC335464756E2164756E21",
  "names": []
}