{
  "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.64948 3.28029C5.01397 3.05599 4.30614 3.21654 3.82961 3.69308L2.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.73367C5.26954 12.2778 4.82442 12.4622 4.49623 12.7903L2.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.17218 17.6815C6.23978 17.7069 6.29313 17.7602 6.31848 17.8278L7.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.2097 19.5038C11.5379 19.1756 11.7222 18.7305 11.7222 18.2663V16.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.3069 20.1704C20.7835 19.6939 20.944 18.986 20.7197 18.3505L18.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,gBAAkjC,EAAljC,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,09BAA09B,KAAK,eAAc,CAAI,GAG5iC",
  "debugId": "807C90117882E6D264756E2164756E21",
  "names": []
}