{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPinCircle/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 IconPinCircle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconPinCircle\"><Path d=\"M13.7675 7.73208C14.7443 8.70888 14.744 10.2923 13.7677 11.2677L14.4745 11.9752C15.8419 10.609 15.8417 8.39213 14.4747 7.025L13.7675 7.73208ZM13.7677 11.2677C12.7907 12.2438 11.2073 12.2442 10.2322 11.2681L9.52474 11.9748C10.8911 13.3426 13.1077 13.3407 14.4745 11.9752L13.7677 11.2677ZM10.2322 11.2681C9.25619 10.291 9.25578 8.70746 10.2319 7.73226L9.52509 7.02483C8.15742 8.39126 8.15931 10.608 9.52474 11.9748L10.2322 11.2681ZM10.2319 7.73226C11.2087 6.75627 12.7911 6.75562 13.7675 7.73208L14.4747 7.025C13.1073 5.65754 10.892 5.65918 9.52509 7.02483L10.2319 7.73226ZM11.5 12.5004V17.5H12.5V12.5004H11.5ZM12 21C7.02944 21 3 16.9706 3 12H2C2 17.5228 6.47715 22 12 22V21ZM3 12C3 7.02944 7.02944 3 12 3V2C6.47715 2 2 6.47715 2 12H3ZM12 3C16.9706 3 21 7.02944 21 12H22C22 6.47715 17.5228 2 12 2V3ZM21 12C21 16.9706 16.9706 21 12 21V22C17.5228 22 22 17.5228 22 12H21Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPinCircle;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAy9B,EAAz9B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,q2BAAq2B,KAAK,eAAc,CAAI,EACj+B,EAEc",
  "debugId": "3D91144DC6177E8664756E2164756E21",
  "names": []
}