{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAirplayAudio/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 IconAirplayAudio: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAirplayAudio\"><Path d=\"M18.0811 21.0001H5.91898L12 13.3995L18.0811 21.0001Z\" fill=\"currentColor\"/><Path d=\"M4.92875 4.92877C8.83394 1.02372 15.1661 1.02377 19.0713 4.92877L19.4258 5.30181C22.8556 9.09778 22.8581 14.8904 19.4336 18.6895L18.1641 17.1026C20.6853 14.0639 20.6101 9.59631 17.9405 6.64166L17.6573 6.34283C14.5331 3.21888 9.46695 3.21883 6.34281 6.34283C3.39765 9.288 3.22932 13.9597 5.83695 17.1026L4.56645 18.6895C1.02785 14.7637 1.14838 8.70913 4.92875 4.92877Z\" fill=\"currentColor\"/><Path d=\"M7.98148 7.54498C10.3367 5.41706 13.9723 5.48816 16.2422 7.75787L16.4375 7.96197C18.3618 10.0731 18.508 13.2246 16.878 15.4952L15.5538 13.8399C16.3063 12.3872 16.1071 10.5682 14.958 9.30767L14.8282 9.17193C13.3151 7.65904 10.8915 7.61126 9.32133 9.02935L9.17191 9.17193C7.9089 10.4349 7.66635 12.3341 8.44633 13.8399L7.12211 15.4952C5.43869 13.1501 5.65005 9.86567 7.75785 7.75787L7.98148 7.54498Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAirplayAudio;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAw+B,EAAx+B,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,uDAAuD,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kXAAkX,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gZAAgZ,KAAK,eAAc,CAAI,EACh/B,EAEc",
  "debugId": "F317C075D5B415CD64756E2164756E21",
  "names": []
}