{"version":3,"sources":["../src/IconFrisbee/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFrisbee: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"frisbee\">\n      <path\n        d=\"M2.44612 7.4908C4.67615 5.84064 8.10488 4.75 12 4.75V3.25C7.85337 3.25 4.09307 4.40609 1.55388 6.28502L2.44612 7.4908Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M21.5539 16.5092C19.3239 18.1594 15.8951 19.25 12 19.25V20.75C16.1466 20.75 19.9069 19.5939 22.4461 17.715L21.5539 16.5092Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M6.28202 7.37039C4.82271 8.14296 4.125 9.10294 4.125 10C4.125 10.8971 4.82271 11.857 6.28202 12.6296C7.71337 13.3874 9.73392 13.875 12 13.875C14.2661 13.875 16.2866 13.3874 17.718 12.6296C19.1773 11.857 19.875 10.8971 19.875 10C19.875 9.10294 19.1773 8.14296 17.718 7.37039C16.2866 6.61261 14.2661 6.125 12 6.125C9.73392 6.125 7.71337 6.61261 6.28202 7.37039Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M1 12C1 10.4011 2.03825 9.10396 3.45837 8.16008C3.08928 8.71358 2.875 9.33028 2.875 10C2.875 11.5882 4.08008 12.8782 5.69716 13.7343C7.34221 14.6053 9.57166 15.125 12 15.125C14.4283 15.125 16.6578 14.6053 18.3028 13.7343C19.9199 12.8782 21.125 11.5882 21.125 10C21.125 9.33028 20.9107 8.71358 20.5416 8.16008C21.9618 9.10396 23 10.4011 23 12C23 13.9636 21.4342 15.472 19.5183 16.43C17.5425 17.4179 14.883 18 12 18C9.11699 18 6.45748 17.4179 4.48172 16.43C2.56577 15.472 1 13.9636 1 12Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconFrisbee;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,WACpCC,EAAA,cAAC,QACC,EAAE,yHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8HACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0WACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,weACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFrisbee","props","React","CentralIconBase","IconFrisbee_default"]}