{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAnchor1/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 IconAnchor1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconAnchor1\"><Path d=\"M2.5 11.5V11H1.84394L2.0179 11.6326L2.5 11.5ZM5.25 21.5L4.7679 21.6326L4.86894 22H5.25V21.5ZM18.75 21.5V22H19.1311L19.2321 21.6326L18.75 21.5ZM21.5 11.5L21.9821 11.6326L22.1561 11H21.5V11.5ZM17.5 11H17V12H17.5V11ZM6.5 12H7V11H6.5V12ZM2.0179 11.6326L4.7679 21.6326L5.7321 21.3674L2.9821 11.3674L2.0179 11.6326ZM19.2321 21.6326L21.9821 11.6326L21.0179 11.3674L18.2679 21.3674L19.2321 21.6326ZM21.5 11H17.5V12H21.5V11ZM2.5 12H6.5V11H2.5V12ZM5.25 22H12V21H5.25V22ZM12 22H18.75V21H12V22ZM12.5 21.5V8.5H11.5V21.5H12.5ZM14.5 5.5C14.5 6.88071 13.3807 8 12 8V9C13.933 9 15.5 7.433 15.5 5.5H14.5ZM12 8C10.6193 8 9.5 6.88071 9.5 5.5H8.5C8.5 7.433 10.067 9 12 9V8ZM9.5 5.5C9.5 4.11929 10.6193 3 12 3V2C10.067 2 8.5 3.567 8.5 5.5H9.5ZM12 3C13.3807 3 14.5 4.11929 14.5 5.5H15.5C15.5 3.567 13.933 2 12 2V3Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAnchor1;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAA44B,EAA54B,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,0xBAA0xB,KAAK,eAAc,CAAI,EACp5B,EAEc",
  "debugId": "928B22C45A9B077764756E2164756E21",
  "names": []
}