{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPaperPlane/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 IconPaperPlane: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"paper-plane, send\"><path d=\"M3.02054 2.92331C3.25067 2.73196 3.57254 2.69576 3.83943 2.8312L20.5894 11.3312C20.8413 11.459 21 11.7175 21 12C21 12.2825 20.8413 12.541 20.5894 12.6688L3.83943 21.1688C3.57254 21.3043 3.25067 21.2681 3.02054 21.0767C2.7904 20.8854 2.69606 20.5755 2.78051 20.2884L4.99768 12.75H9.25004C9.66426 12.75 10 12.4142 10 12C10 11.5858 9.66426 11.25 9.25004 11.25H4.99768L2.78051 3.71163C2.69606 3.4245 2.7904 3.11465 3.02054 2.92331Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPaperPlane;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAugB,EAAvgB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,8aAA8a,KAAK,eAAc,CAAI,GAGjgB",
  "debugId": "7F3AF320E6CC25EB64756E2164756E21",
  "names": []
}