{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconClosedCaptioning/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 IconClosedCaptioning: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconClosedCaptioning\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.9142 10.5858C10.1332 9.80474 8.86684 9.80474 8.08579 10.5858C7.30474 11.3668 7.30474 12.6332 8.08579 13.4142C8.86684 14.1953 10.1332 14.1953 10.9142 13.4142L11.6213 14.1213C10.4497 15.2929 8.55025 15.2929 7.37868 14.1213C6.20711 12.9497 6.20711 11.0503 7.37868 9.87868C8.55025 8.70711 10.4497 8.70711 11.6213 9.87868L10.9142 10.5858ZM16.9142 10.5858C16.1332 9.80474 14.8668 9.80474 14.0858 10.5858C13.3047 11.3668 13.3047 12.6332 14.0858 13.4142C14.8668 14.1953 16.1332 14.1953 16.9142 13.4142L17.6213 14.1213C16.4497 15.2929 14.5503 15.2929 13.3787 14.1213C12.2071 12.9497 12.2071 11.0503 13.3787 9.87868C14.5503 8.70711 16.4497 8.70711 17.6213 9.87868L16.9142 10.5858Z\" fill=\"currentColor\"/><Path d=\"M20.5 3.5H3.5V20.5H20.5V3.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconClosedCaptioning;\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,EAAyE,EAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,gBAA25B,EAA35B,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qqBAAqqB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+BAA+B,OAAO,eAAe,cAAc,SAAQ,CAAI,EACn6B,EAEc",
  "debugId": "0EB394E0C935445E64756E2164756E21",
  "names": []
}