{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBoat/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 IconBoat: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"boat, ship, sailing\"><path d=\"M10.8824 2.33178C12.0056 1.53478 13.3992 2.33574 13.5025 3.57689V14.5007H13.5455L13.5504 15.9997H20.1861C21.72 16.0003 22.5108 17.8347 21.4586 18.9509L19.1012 21.4509C18.7706 21.8012 18.3094 21.9996 17.8277 21.9997H6.18419C5.70287 21.9996 5.2432 21.8008 4.9127 21.4509L2.55137 18.9509C1.49753 17.8349 2.2888 15.9997 3.82384 15.9997H12.0504L12.0406 13.3669C9.60629 13.3134 7.16533 13.3679 4.86094 13.5798C3.66413 13.6894 2.5487 12.5209 3.10606 11.2488C5.00136 6.92913 8.81656 3.79793 10.8824 2.33178Z\" fill=\"currentColor\"/><path d=\"M15.0025 5.05346C16.9659 6.52494 18.8788 8.67094 19.9869 11.449C20.4831 12.6932 19.4115 13.8206 18.2359 13.7165C17.1804 13.6231 16.098 13.5442 15.0025 13.4831V5.05346Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBoat;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAwxB,EAAxxB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,sfAAsf,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0KAA0K,KAAK,eAAc,CAAI,GAGlxB",
  "debugId": "23E1204B37F9F82864756E2164756E21",
  "names": []
}