{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGif/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 IconGif: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconGif\"><Path d=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\" stroke=\"currentColor\"/><Path d=\"M10.7048 10.8296C10.6379 9.64323 9.7011 8.75 8.19081 8.75C6.48934 8.75 5.5 9.82646 5.5 11.5213V12.3962C5.5 14.1461 6.39853 15.25 8.20515 15.25C9.75846 15.25 10.7191 14.2743 10.7191 13.0742V11.8099H8.18125V12.6298H9.68199V13.12C9.68199 13.8346 9.10368 14.3613 8.21949 14.3613C7.11544 14.3613 6.58493 13.6101 6.58493 12.3916V11.5259C6.58493 10.3349 7.17279 9.63865 8.18603 9.63865C9.02243 9.63865 9.55294 10.1059 9.64375 10.8296H10.7048Z\" fill=\"currentColor\"/><Path d=\"M13.0085 15.1263V8.87368H11.9235V15.1263H13.0085Z\" fill=\"currentColor\"/><Path d=\"M15.5607 15.1263V12.5428H18.2467V11.6725H15.5607V9.75775H18.5V8.87368H14.4757V15.1263H15.5607Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGif;\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,EAA4D,EAAM,KAAK,CAAC,IAAU,CAC7F,OAAO,gBAAizB,EAAjzB,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,EAAE,+BAA+B,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sbAAsb,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oDAAoD,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iGAAiG,KAAK,eAAc,CAAI,EACzzB,EAEc",
  "debugId": "6BAEC82D2AE11B1864756E2164756E21",
  "names": []
}