{
  "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-filled-radius-0-stroke-2-IconClosedCaptioning\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 3V21H21V3H3ZM10.4571 11.2929C10.0666 10.9024 9.43342 10.9024 9.04289 11.2929C8.65237 11.6834 8.65237 12.3166 9.04289 12.7071C9.43342 13.0976 10.0666 13.0976 10.4571 12.7071L11.8713 14.1213C10.6997 15.2929 8.80025 15.2929 7.62868 14.1213C6.45711 12.9497 6.45711 11.0503 7.62868 9.87868C8.80025 8.70711 10.6997 8.70711 11.8713 9.87868L10.4571 11.2929ZM14.5429 11.2929C14.9334 10.9024 15.5666 10.9024 15.9571 11.2929L17.3713 9.87868C16.1997 8.70711 14.3003 8.70711 13.1287 9.87868C11.9571 11.0503 11.9571 12.9497 13.1287 14.1213C14.3003 15.2929 16.1997 15.2929 17.3713 14.1213L15.9571 12.7071C15.5666 13.0976 14.9334 13.0976 14.5429 12.7071C14.1524 12.3166 14.1524 11.6834 14.5429 11.2929Z\" fill=\"currentColor\"/></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,gBAAm1B,EAAn1B,IAAqB,EAAO,OAAO,wDAAuD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,orBAAorB,KAAK,eAAc,CAAI,EAC31B,EAEc",
  "debugId": "054673F2FCA59BF564756E2164756E21",
  "names": []
}