{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFolderLink/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 IconFolderLink: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconFolderLink\"><Path d=\"M10.5352 3H2V11.8027C2.88252 11.2922 3.90714 11 5 11H8C11.3137 11 14 13.6863 14 17C14 18.0929 13.7078 19.1175 13.1973 20H22V6H12.5352L10.5352 3Z\" fill=\"currentColor\"/><Path d=\"M8 13H7V15H8C9.10457 15 10 15.8954 10 17C10 18.1046 9.10457 19 8 19H7V21H8C10.2091 21 12 19.2091 12 17C12 14.7909 10.2091 13 8 13Z\" fill=\"currentColor\"/><Path d=\"M5 13C2.79086 13 1 14.7909 1 17C1 19.2091 2.79086 21 5 21H6V19H5C3.89543 19 3 18.1046 3 17C3 15.8954 3.89543 15 5 15H6L6 13H5Z\" fill=\"currentColor\"/><Path d=\"M8 16H5L5 18H8L8 16Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFolderLink;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA0nB,EAA1nB,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,mJAAmJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qIAAqI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iIAAiI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uBAAuB,KAAK,eAAc,CAAI,EACloB,EAEc",
  "debugId": "B69F62794A4D8BDD64756E2164756E21",
  "names": []
}