{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAirplane/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 IconAirplane: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"airplane, flight\"><path d=\"M19.3096 2C18.0499 2 16.8417 2.50044 15.9509 3.39124L13.3456 5.99656L5.05518 3.07054C4.78283 2.97441 4.47947 3.04322 4.27524 3.24745L2.21968 5.303C2.06707 5.45561 1.9876 5.66657 2.00159 5.88194C2.01558 6.09731 2.12166 6.29621 2.29273 6.4278L8.29624 11.0459L7.06435 12.2778H5.31946C5.12055 12.2778 4.92978 12.3568 4.78913 12.4974L2.21968 15.0669C2.03937 15.2472 1.96303 15.5068 2.01701 15.756C2.071 16.0052 2.24791 16.2099 2.48667 16.2995L6.27858 17.7214L7.70054 21.5133C7.79008 21.7521 7.9948 21.929 8.24402 21.983C8.49324 22.037 8.75281 21.9606 8.93312 21.7803L11.5026 19.2109C11.6432 19.0702 11.7222 18.8795 11.7222 18.6806V16.9357L12.9541 15.7038L17.5722 21.7073C17.7038 21.8783 17.9027 21.9844 18.1181 21.9984C18.3334 22.0124 18.5444 21.9329 18.697 21.7803L20.7526 19.7248C20.9568 19.5205 21.0256 19.2172 20.9295 18.9448L18.0035 10.6544L20.6088 8.04913C21.4996 7.15833 22 5.95015 22 4.69037V2.75C22 2.33579 21.6642 2 21.25 2H19.3096Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAirplane;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAogC,EAApgC,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,46BAA46B,KAAK,eAAc,CAAI,GAG9/B",
  "debugId": "C9F53B23B4D8045964756E2164756E21",
  "names": []
}