{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGraduateCap2/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 { Ellipse, Path } from \"react-native-svg\";\n\nexport const IconGraduateCap2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconGraduateCap2\"><Path d=\"M0.688628 8.90979L11.9569 3.52063C11.9841 3.50759 12.0159 3.50759 12.0431 3.52063L23.3114 8.90979C23.3872 8.94604 23.3872 9.05396 23.3114 9.09021L12.0431 14.4794C12.0159 14.4924 11.9841 14.4924 11.9569 14.4794L0.688628 9.09021C0.612822 9.05396 0.612822 8.94604 0.688628 8.90979Z\" stroke=\"currentColor\"/><Path d=\"M4.5 11V16.5\" stroke=\"currentColor\"/><Ellipse cx=\"12\" cy=\"9\" rx=\"2\" ry=\"1\" fill=\"currentColor\"/><Path d=\"M20 18.5H19V21.5H20V18.5Z\" fill=\"currentColor\" stroke=\"currentColor\"/><Path d=\"M4.5 16.5C4.5 18.433 7.99594 19.97 12 19.97C13.4784 19.97 15.3535 19.5868 16.5 19.22\" stroke=\"currentColor\"/><Path d=\"M12 9L17.0725 12.0435C18.5785 12.9471 19.5 14.5746 19.5 16.331V21\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGraduateCap2;\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,kBAAS,UAAS,yBAEX,IAAM,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAmyB,EAAnyB,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,EAAE,yRAAyR,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAS,GAAG,KAAK,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4BAA4B,KAAK,eAAe,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uFAAuF,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oEAAoE,OAAO,eAAc,CAAI,EAC3yB,EAEc",
  "debugId": "927A2628BA068C8B64756E2164756E21",
  "names": []
}