{
  "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=\"M12.1774 11.5212C12.0609 11.4929 11.9394 11.4929 11.8229 11.5212L3.60067 13.5212C1.6577 13.9939 4.53816 18.2776 5.00303 18.9956L2.59166 19.5169C2.1868 19.6045 1.92956 20.0036 2.0171 20.4085C2.10463 20.8134 2.5038 21.0706 2.90866 20.9831L7.37516 20.0173L11.8417 20.9831C11.9461 21.0056 12.0542 21.0056 12.1587 20.9831L16.6252 20.0173L21.0917 20.9831C21.4965 21.0706 21.8957 20.8134 21.9832 20.4085C22.0708 20.0036 21.8135 19.6045 21.4087 19.5169L18.9973 18.9956C19.4622 18.2776 22.3426 13.9939 20.3996 13.5212L12.1774 11.5212Z\" fill=\"currentColor\"/><path d=\"M9 2.75V6H5.75C5.33579 6 5 6.33579 5 6.75V11.6372L11.4687 10.0637C11.8181 9.97875 12.1828 9.97875 12.5323 10.0637L19 11.637V6.75C19 6.33579 18.6642 6 18.25 6H15V2.75C15 2.33579 14.6642 2 14.25 2H9.75C9.33579 2 9 2.33579 9 2.75Z\" 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,gBAA02B,EAA12B,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,ghBAAghB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sOAAsO,KAAK,eAAc,CAAI,GAGp2B",
  "debugId": "24F30DC6652B808364756E2164756E21",
  "names": []
}