{"version":3,"sources":["../src/IconSurfing/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSurfing: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"surfing, wave, vibe\">\n      <path\n        d=\"M4.35786 18.7959C2.10311 9.53923 11.0832 14.2191 15.103 19.2393C15.0689 19.2406 15.0342 19.2451 14.9995 19.2451C14.333 19.245 13.7881 18.9958 13.4838 18.6592L11.9995 17.0166L10.5151 18.6592C10.2107 18.9957 9.66595 19.2451 8.99946 19.2451C8.33302 19.245 7.78815 18.9958 7.48384 18.6592L6.0727 17.0986L4.5854 18.5859C4.50415 18.6672 4.42744 18.7354 4.35786 18.7959Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M7.07954 8.18457C9.28526 7.00762 12.1295 6.01338 14.5004 7.00586C15.6534 7.48865 16.0064 8.24781 17.0004 9.00586C17.7492 9.57676 18.9161 10.1363 19.7963 10.5176C20.4415 10.7975 20.7577 11.5507 20.4721 12.1934C20.2081 12.7868 19.5239 13.069 18.9184 12.834L15.5004 11.5059L14.5004 13.5059L16.809 15.8145C17.245 16.2508 17.4558 16.8644 17.3793 17.4766L17.3461 17.7393L16.5336 18.6367C15.6047 17.4118 14.4189 16.2223 13.1694 15.21C12.0212 14.2799 10.7551 13.4461 9.51118 12.8623C9.54028 12.569 9.63312 12.2844 9.78559 12.0303L11.0004 10.0059C11.0004 10.0059 10.0831 9.94566 9.50044 10.0059C9.09874 10.0474 8.63854 10.169 8.20161 10.3135C7.39751 10.5793 6.50066 10.0148 6.50044 9.16797C6.50045 8.7585 6.71829 8.37735 7.07954 8.18457Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M15.2504 2C16.4929 2.00024 17.5004 3.0075 17.5004 4.25C17.5004 5.4925 16.4929 6.49976 15.2504 6.5C14.0078 6.5 13.0004 5.49264 13.0004 4.25C13.0004 3.00736 14.0078 2 15.2504 2Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M12.5566 19.4971C13.1395 20.1421 14.0468 20.4951 15 20.4951C15.9532 20.4951 16.8605 20.1421 17.4434 19.4971L17.9727 18.9121L18.5303 19.4697C19.1926 20.1321 19.6846 20.3441 20.1328 20.4248C20.3754 20.4685 20.6323 20.4781 20.9424 20.4736C21.2133 20.4698 21.6359 20.4502 22 20.4502V21.9502C21.6141 21.9502 21.3492 21.9681 20.9639 21.9736C20.6178 21.9786 20.2496 21.9692 19.8672 21.9004C19.2391 21.7873 18.6395 21.5229 18.0059 21.0117C17.1434 21.678 16.0566 21.9951 15 21.9951C13.9459 21.9951 12.8615 21.6797 12 21.0166C11.1385 21.6797 10.0541 21.9951 9 21.9951C7.94315 21.9951 6.85573 21.6784 5.99316 21.0117C5.35974 21.5226 4.76068 21.7874 4.13281 21.9004C3.75041 21.9692 3.38223 21.9786 3.03613 21.9736C2.65078 21.9681 2.38587 21.9502 2 21.9502V20.4502C2.36412 20.4502 2.78673 20.4698 3.05762 20.4736C3.36774 20.4781 3.62461 20.4685 3.86719 20.4248C4.31537 20.3441 4.8074 20.1321 5.46973 19.4697L6.02734 18.9121L6.55664 19.4971C7.13952 20.1421 8.04684 20.4951 9 20.4951C9.95316 20.4951 10.8605 20.1421 11.4434 19.4971L12 18.8809L12.5566 19.4971Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconSurfing;\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,uBACpCC,EAAA,cAAC,QACC,EAAE,8WACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2tBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kLACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uhCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSurfing","props","React","CentralIconBase","IconSurfing_default"]}