{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCat/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 IconCat: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCat\"><Path d=\"M13.2892 16.0055C13.8594 15.8527 14.1731 15.1742 13.9897 14.4899C13.8064 13.8057 13.1955 13.3748 12.6253 13.5276C12.0551 13.6804 11.7414 14.359 11.9248 15.0432C12.1081 15.7275 12.719 16.1583 13.2892 16.0055Z\" fill=\"currentColor\"/><Path d=\"M18.0684 16.4955C18.1906 16.9516 17.735 17.4701 17.0508 17.6534C16.3665 17.8367 15.7127 17.6156 15.5905 17.1594C15.4683 16.7032 15.9239 16.1848 16.6081 16.0015C17.2924 15.8181 17.9462 16.0393 18.0684 16.4955Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 3H3V21H21V3ZM14.8767 9.3188C14.0072 9.55178 13.2037 9.89153 12.4854 10.3127L8.23926 9.32674L9.11761 14.1907C8.79389 15.135 8.73348 16.1269 8.99221 17.0925C9.18405 17.8084 9.53505 18.4492 10.0105 19H19V14.3425C18.6017 14.2341 18.2506 13.8738 18.1191 13.3833C17.9358 12.699 18.2494 12.0205 18.8196 11.8677C18.8795 11.8517 18.9398 11.8421 19 11.8385V7.5L17.4448 8.98386C16.6121 8.97828 15.7463 9.08581 14.8767 9.3188Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCat;\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,gBAAshC,EAAthC,IAAqB,EAAO,OAAO,2CAA0C,gBAAC,EAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qaAAqa,KAAK,eAAc,CAAI,EAC9hC,EAEc",
  "debugId": "4FE512016AE0C92B64756E2164756E21",
  "names": []
}