{
  "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.99656L6.83806 3.69979C5.47627 3.21915 3.95949 3.5632 2.93834 4.58435L2.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.2778H6.5621C5.56754 12.2778 4.61371 12.6729 3.91045 13.3761L2.21968 15.0669C2.03937 15.2472 1.96303 15.5068 2.01701 15.756C2.071 16.0052 2.24791 16.2099 2.48667 16.2995L5.32097 17.3623C5.92942 17.5905 6.40951 18.0706 6.63768 18.679L7.70054 21.5133C7.79008 21.7521 7.9948 21.929 8.24402 21.983C8.49324 22.037 8.75281 21.9606 8.93312 21.7803L10.6239 20.0896C11.3271 19.3863 11.7222 18.4325 11.7222 17.4379V16.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.7803L19.4157 21.0617C20.4368 20.0405 20.7809 18.5237 20.3002 17.1619L18.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,gBAAijC,EAAjjC,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,y9BAAy9B,KAAK,eAAc,CAAI,GAG3iC",
  "debugId": "6B519350E3D9539464756E2164756E21",
  "names": []
}