{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPinFlag/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 IconPinFlag: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPinFlag\"><Path d=\"M19.9846 6.50007L11 1.25903V18.0001H13V10.5744L19.9846 6.50007Z\" fill=\"currentColor\"/><Path d=\"M4 17.5001C4 17.3226 4.17323 16.8741 5.1647 16.3381C6.08847 15.8388 7.46218 15.4201 9.13617 15.19L8.86383 13.2086C7.04225 13.459 5.41595 13.9288 4.21362 14.5787C3.07898 15.1921 2 16.1538 2 17.5001C2 18.3578 2.45088 19.0658 3.03043 19.5986C3.60913 20.1307 4.39133 20.5639 5.27359 20.907C7.04448 21.5957 9.42296 22.0001 12 22.0001C14.577 22.0001 16.9555 21.5957 18.7264 20.907C19.6087 20.5639 20.3909 20.1307 20.9696 19.5986C21.5491 19.0658 22 18.3578 22 17.5001C22 16.1538 20.921 15.1921 19.7864 14.5787C18.584 13.9288 16.9578 13.459 15.1362 13.2086L14.8638 15.19C16.5378 15.4201 17.9115 15.8388 18.8353 16.3381C19.8268 16.8741 20 17.3226 20 17.5001C20 17.609 19.9472 17.8218 19.6159 18.1264C19.2838 18.4318 18.7479 18.7527 18.0015 19.043C16.515 19.6211 14.3935 20.0001 12 20.0001C9.60648 20.0001 7.48496 19.6211 5.99849 19.043C5.25207 18.7527 4.71624 18.4318 4.3841 18.1264C4.0528 17.8218 4 17.609 4 17.5001Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPinFlag;\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,gBAA8lC,EAA9lC,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,kEAAkE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+4BAA+4B,KAAK,eAAc,CAAI,EACtmC,EAEc",
  "debugId": "82F879D09724C03064756E2164756E21",
  "names": []
}