{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAirplay/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 IconAirplay: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconAirplay\"><Path d=\"M2.5 17.5H2V18H2.5V17.5ZM6.5 18H7V17H6.5V18ZM2.5 3.5V3H2V3.5H2.5ZM21.5 3.5H22V3H21.5V3.5ZM21.5 17.5V18H22V17.5H21.5ZM17.5 17H17V18H17.5V17ZM2.5 17.5V18H6.5V17.5V17H2.5V17.5ZM2.5 17.5H3V3.5H2.5H2V17.5H2.5ZM2.5 3.5V4H21.5V3.5V3H2.5V3.5ZM21.5 3.5H21V17.5H21.5H22V3.5H21.5ZM21.5 17.5V17H17.5V17.5V18H21.5V17.5Z\" fill=\"currentColor\"/><Path d=\"M12 15L12.4044 14.7059L12 14.1499L11.5956 14.7059L12 15ZM8 20.5L7.59563 20.2059L7.01811 21H8V20.5ZM16 20.5V21H16.9819L16.4044 20.2059L16 20.5ZM12 15L11.5956 14.7059L7.59563 20.2059L8 20.5L8.40437 20.7941L12.4044 15.2941L12 15ZM8 20.5V21H16V20.5V20H8V20.5ZM16 20.5L16.4044 20.2059L12.4044 14.7059L12 15L11.5956 15.2941L15.5956 20.7941L16 20.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAirplay;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAA6xB,EAA7xB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,qTAAqT,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yVAAyV,KAAK,eAAc,CAAI,EACryB,EAEc",
  "debugId": "DEC074A66520FC1664756E2164756E21",
  "names": []
}