{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPaperPlaneTopRight/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPaperPlaneTopRight: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconPaperPlaneTopRight\"><Path d=\"M11.9872 21.5L11.5055 21.6342L11.8227 22.773L12.4189 21.7522L11.9872 21.5ZM22.5 3.5L22.9318 3.75216L23.3711 3H22.5V3.5ZM2 3.5V3H0.842445L1.63597 3.84276L2 3.5ZM9.06251 11.0007L9.54418 10.8665L9.51108 10.7477L9.42654 10.6579L9.06251 11.0007ZM21.8479 4.43659L22.2845 4.19289L21.7971 3.31971L21.3605 3.56341L21.8479 4.43659ZM12.4189 21.7522L22.9318 3.75216L22.0682 3.24784L11.5554 21.2478L12.4189 21.7522ZM22.5 3H2V4H22.5V3ZM1.63597 3.84276L8.69849 11.3434L9.42654 10.6579L2.36403 3.15724L1.63597 3.84276ZM8.58085 11.1349L11.5055 21.6342L12.4688 21.3658L9.54418 10.8665L8.58085 11.1349ZM9.50976 11.3237L21.8479 4.43659L21.3605 3.56341L9.02236 10.4505L9.50976 11.3237Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPaperPlaneTopRight;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAA2E,EAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,gBAAwxB,EAAxxB,IAAqB,EAAO,OAAO,4DAA2D,gBAAC,EAAD,CAAM,EAAE,2pBAA2pB,KAAK,eAAc,CAAI,EAChyB,EAEc",
  "debugId": "43EFD71A33B69C8D64756E2164756E21",
  "names": []
}