{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShip/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 IconShip: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"ship, changelog\"><path d=\"M20.3855 16.1021C20.0694 17.091 19.6275 18.0225 18.9973 18.9956L21.4087 19.5169C21.8135 19.6045 22.0708 20.0036 21.9832 20.4085C21.8957 20.8133 21.4965 21.0706 21.0917 20.983L17.1007 20.1201C16.7873 20.0524 16.463 20.0524 16.1497 20.1201L12.7927 20.846C12.2704 20.9589 11.73 20.9589 11.2077 20.846L7.85066 20.1201C7.53728 20.0524 7.21304 20.0524 6.89966 20.1201L2.90866 20.983C2.5038 21.0706 2.10463 20.8133 2.0171 20.4085C1.92956 20.0036 2.1868 19.6045 2.59166 19.5169L5.00297 18.9956C4.37281 18.0225 3.93088 17.091 3.61477 16.1021C2.98626 14.1359 4.40588 12.3254 6.20934 11.8867L11.1138 10.6937C11.6962 10.552 12.3041 10.552 12.8865 10.6937L17.791 11.8867C19.5944 12.3254 21.0141 14.1359 20.3855 16.1021Z\" fill=\"currentColor\"/><path d=\"M9 3.5V6H6.5C5.67157 6 5 6.67157 5 7.5V10.7218C5.27854 10.5981 5.56526 10.4997 5.85513 10.4292L10.7596 9.23621C11.575 9.03788 12.426 9.03788 13.2413 9.23621L18.1458 10.4292C18.4354 10.4996 18.7218 10.5979 19 10.7214V7.5C19 6.67157 18.3284 6 17.5 6H15V3.5C15 2.67157 14.3284 2 13.5 2H10.5C9.67157 2 9 2.67157 9 3.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconShip;\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,gBAAsnC,EAAtnC,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,qsBAAqsB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6TAA6T,KAAK,eAAc,CAAI,GAGhnC",
  "debugId": "DC8DEC62A0DA657864756E2164756E21",
  "names": []
}