{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVectorAnchorPointAsymmetric/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 IconVectorAnchorPointAsymmetric: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconVectorAnchorPointAsymmetric\"><Path d=\"M13 4C14.8638 4 16.43 5.27477 16.874 7H18.75L20.25 5.5L22.75 8L20.25 10.5L18.75 9H16.874C16.8724 9.00628 16.8698 9.01229 16.8682 9.01855C17.2416 9.45091 17.7471 10.0696 18.3115 10.8535C19.4743 12.4685 20.9 14.7998 21.9395 17.6582L20.0605 18.3418C19.1 15.7004 17.7757 13.5315 16.6885 12.0215C16.3644 11.5713 16.0614 11.1818 15.7979 10.8564C15.0764 11.5631 14.0897 12 13 12C11.436 12 10.0825 11.1021 9.4248 9.79395C9.39313 9.80824 9.36013 9.8216 9.32715 9.83691C8.72749 10.1153 7.92922 10.5574 7.13477 11.21C5.56296 12.5011 4 14.6117 4 18H2C2 13.8884 3.93709 11.2489 5.86523 9.66504C6.16592 9.41804 6.46711 9.19783 6.75977 9H4L2.5 10.5L0 8L2.5 5.5L4 7H9.12598C9.57002 5.27477 11.1362 4 13 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconVectorAnchorPointAsymmetric;\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,EAAoF,EAAM,KAAK,CAAC,IAAU,CACrH,OAAO,gBAAwzB,EAAxzB,IAAqB,EAAO,OAAO,mEAAkE,gBAAC,EAAD,CAAM,EAAE,orBAAorB,KAAK,eAAc,CAAI,EACh0B,EAEc",
  "debugId": "80B51505B01B3B0C64756E2164756E21",
  "names": []
}