{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEinstein/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconEinstein: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconEinstein\"><Circle cx=\"7\" cy=\"7.25\" r=\"3.25\" stroke=\"currentColor\"/><Circle cx=\"17\" cy=\"7.25\" r=\"3.25\" stroke=\"currentColor\"/><Path d=\"M10.5 7C11.4443 6.33333 12.5557 6.33333 13.5 7\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M4.5303 15.7324C5.48644 14.2252 6.43171 13.3532 8.13636 13.0412C9.73921 12.7478 12.2576 14.1177 12.2576 14.1177C12.2576 14.1177 14.3802 12.8725 15.8636 13.0412C17.4761 13.2246 18.4841 13.8483 19.4697 15.1941C20.4778 16.5707 20.5 19.5 20.5 19.5H17.9242C17.3424 18.5823 16.1531 18.2656 15.192 18.7726L14.8333 18.9618L13.851 18.346C12.8765 17.7351 11.6386 17.7351 10.6641 18.346L9.68182 18.9618L9.60484 18.9212C8.43155 18.3023 6.98988 18.5388 6.07576 19.5H3.5C3.5 19.5 3.72113 17.0078 4.5303 15.7324Z\" stroke=\"currentColor\" strokeLinecap=\"round\"/></CentralIconBase>;\n});\n\nexport default IconEinstein;\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,iBAAS,UAAQ,yBAEV,IAAM,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAA+2B,EAA/2B,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAQ,GAAG,IAAI,GAAG,OAAO,EAAE,OAAO,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,OAAO,EAAE,OAAO,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,ofAAof,OAAO,eAAe,cAAc,QAAO,CAAI,EACv3B,EAEc",
  "debugId": "DD5F50A4C19744B164756E2164756E21",
  "names": []
}