{
  "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=\"M18.9973 18.9956L21.4087 19.517C21.8135 19.6045 22.0708 20.0037 21.9832 20.4085C21.8957 20.8134 21.4965 21.0706 21.0917 20.9831L16.678 20.0288C16.6432 20.0212 16.6071 20.0212 16.5723 20.0288L12.37 20.9374C12.1263 20.9901 11.8741 20.9901 11.6303 20.9374L7.42799 20.0288C7.39317 20.0212 7.35714 20.0212 7.32232 20.0288L2.90866 20.9831C2.5038 21.0706 2.10463 20.8134 2.0171 20.4085C1.92956 20.0037 2.1868 19.6045 2.59166 19.517L5.003 18.9956C4.17217 17.7125 1.58003 14.0128 4.47023 13.3098L11.5865 11.5788C11.8583 11.5126 12.142 11.5126 12.4138 11.5788L19.5301 13.3098C22.4203 14.0128 19.8281 17.7125 18.9973 18.9956Z\" fill=\"currentColor\"/><path d=\"M9 3.5V6H6.5C5.67157 6 5 6.67157 5 7.5V11.6372L11.2323 10.1213C11.7371 9.99848 12.2639 9.99848 12.7686 10.1213L19 11.637V7.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,gBAA27B,EAA37B,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,ymBAAymB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8NAA8N,KAAK,eAAc,CAAI,GAGr7B",
  "debugId": "FE105B637531C5B564756E2164756E21",
  "names": []
}