{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWreath/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 IconWreath: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconWreath\"><Path d=\"M14.0342 17.5C15.8327 19.0486 17.8265 19.2107 19.6281 17.2761C15.5899 12.9397 10.1288 19.9163 14.8407 21.5M10.0597 17.5C8.22583 19.0486 6.20917 19.2107 4.37208 17.2761C8.17972 13.2663 13.9603 19.173 9.25381 21.5M7.42111 15.5751C6.72291 12.4007 4.92764 11.2957 2 12.2382C2.69819 15.4126 4.49347 16.5177 7.42111 15.5751ZM6.16381 12.3301C7.12244 9.45162 5.99852 7.68648 2.76994 7C1.81131 9.8785 2.93524 11.6436 6.16381 12.3301ZM7.01059 2.5C4.1622 4.10908 3.76153 6.0709 5.80071 8.42404C8.64909 6.81496 9.04976 4.85313 7.01059 2.5ZM16.5789 15.5751C17.2771 12.4007 19.0724 11.2957 22 12.2382C21.3018 15.4126 19.5065 16.5177 16.5789 15.5751ZM17.8363 12.3301C16.8776 9.45162 18.0016 7.68648 21.2301 7C22.1888 9.8785 21.0648 11.6436 17.8363 12.3301ZM16.9895 2.5C19.8378 4.10908 20.2385 6.0709 18.1993 8.42404C15.351 6.81496 14.9503 4.85313 16.9895 2.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconWreath;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAy9B,EAAz9B,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,+0BAA+0B,OAAO,eAAe,cAAc,SAAQ,CAAI,EACj+B,EAEc",
  "debugId": "1643CC1AD1549EA864756E2164756E21",
  "names": []
}