{
  "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.33129C12.0054 1.53472 13.3989 2.33561 13.5025 3.57641V14.5002H13.5455L13.5504 16.0002H20.1861C21.7202 16.0008 22.5112 17.8352 21.4586 18.9514L19.693 20.8235C18.9846 21.5744 17.9977 22.0001 16.9654 22.0002H7.04649C6.01498 22.0002 5.02827 21.5753 4.31993 20.8254L2.55137 18.9514C1.49753 17.8354 2.2888 16.0002 3.82384 16.0002H12.0504L12.0406 13.3664C9.6063 13.3129 7.16533 13.3675 4.86094 13.5793C3.66403 13.6891 2.5485 12.5205 3.10606 11.2483C5.00147 6.92875 8.81666 3.79735 10.8824 2.33129Z\" fill=\"currentColor\"/><path d=\"M15.0025 5.05297C16.9658 6.52438 18.8787 8.67063 19.9869 11.4485C20.4832 12.6927 19.4115 13.8201 18.2359 13.7161C17.1804 13.6226 16.098 13.5437 15.0025 13.4827V5.05297Z\" 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,gBAA2xB,EAA3xB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,wfAAwf,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2KAA2K,KAAK,eAAc,CAAI,GAGrxB",
  "debugId": "7AC52218CCD142FD64756E2164756E21",
  "names": []
}