{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconUserBlock/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 IconUserBlock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconUserBlock\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.25 13C20.5969 13.0003 22.4998 14.9031 22.5 17.25C22.4997 19.5968 20.5968 21.4997 18.25 21.5C15.9031 21.4998 14.0003 19.5969 14 17.25C14.0002 14.9031 15.9031 13.0002 18.25 13ZM17.2754 19.4971C17.574 19.6268 17.9036 19.7001 18.25 19.7002C19.6027 19.6999 20.6999 18.6027 20.7002 17.25C20.7001 16.9036 20.6268 16.574 20.4971 16.2754L17.2754 19.4971ZM18.25 14.8008C16.8972 14.801 15.801 15.8972 15.8008 17.25C15.8008 17.5959 15.8736 17.9243 16.0029 18.2227L19.2227 15.0029C18.9243 14.8736 18.5959 14.8008 18.25 14.8008Z\" fill=\"currentColor\"/><Path d=\"M7.83105 12.1699C8.95551 13.1237 10.4101 13.7002 12 13.7002C12.5669 13.7002 13.1161 13.6249 13.6396 13.4873C12.8019 14.5126 12.2998 15.8228 12.2998 17.25C12.2998 18.6717 12.7989 19.9765 13.6309 21H4V19C4 16.109 5.53311 13.5755 7.83105 12.1699Z\" fill=\"currentColor\"/><Path d=\"M12 2.5C14.6234 2.5 16.75 4.62665 16.75 7.25C16.75 9.87335 14.6234 12 12 12C9.37665 12 7.25 9.87335 7.25 7.25C7.25 4.62665 9.37665 2.5 12 2.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconUserBlock;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAkmC,EAAlmC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ygBAAygB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sPAAsP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iJAAiJ,KAAK,eAAc,CAAI,EAC1mC,EAEc",
  "debugId": "7D46F894FE8F3CA664756E2164756E21",
  "names": []
}