{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFolderBookmarks/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 IconFolderBookmarks: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconFolderBookmarks\"><Path d=\"M1.5 13.5H7.5V20.5L4.5 19L1.5 20.5V13.5Z\" stroke=\"currentColor\"/><Path d=\"M2 10.5V11H3V10.5H2.5H2ZM2.5 3.5V3H2V3.5H2.5ZM10 3.5L10.416 3.22265L10.2676 3H10V3.5ZM12 6.5L11.584 6.77735L11.7324 7H12V6.5ZM21.5 6.5H22V6H21.5V6.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5 10.5H3V3.5H2.5H2V10.5H2.5ZM2.5 3.5V4H10V3.5V3H2.5V3.5ZM10 3.5L9.58397 3.77735L11.584 6.77735L12 6.5L12.416 6.22265L10.416 3.22265L10 3.5ZM12 6.5V7H21.5V6.5V6H12V6.5ZM21.5 6.5H21V19.5H21.5H22V6.5H21.5ZM10.5 19.5V20H21.5V19.5V19H10.5V19.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFolderBookmarks;\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,EAAwE,EAAM,KAAK,CAAC,IAAU,CACzG,OAAO,gBAAymB,EAAzmB,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAM,EAAE,2CAA2C,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qaAAqa,KAAK,eAAc,CAAI,EACjnB,EAEc",
  "debugId": "99A10B92A506676E64756E2164756E21",
  "names": []
}