{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAirpodRight/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 IconAirpodRight: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAirpodRight\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.25 13C8.76878 13 10 14.2312 10 15.75C10 16.492 9.70425 17.1635 9.22656 17.6582C9.26966 17.7122 9.31079 17.7683 9.35059 17.8262C9.90946 18.6392 9.99999 19.6566 10 20.5V21H8V20.5C7.99999 19.7224 7.8951 19.2407 7.70215 18.96C7.56758 18.7643 7.27694 18.502 6.38086 18.502V18.5H6V21H4V13H7.25ZM6 16.5H7.25C7.66421 16.5 8 16.1642 8 15.75C8 15.3358 7.66421 15 7.25 15H6V16.5Z\" fill=\"currentColor\"/><Path d=\"M15 3C17.7614 3 20 5.23858 20 8V21H16V12.9004C15.6769 12.966 15.3424 13 15 13C13.3645 13 11.9122 12.215 11 11.001V4.99902C11.9122 3.78503 13.3645 3 15 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAirpodRight;\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,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAAysB,EAAzsB,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sXAAsX,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4JAA4J,KAAK,eAAc,CAAI,EACjtB,EAEc",
  "debugId": "27D1D7311B56216F64756E2164756E21",
  "names": []
}