{
  "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-filled-radius-0-stroke-2-IconWreath\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.65011 2.39808L7.08884 1.65332L6.30677 2.16132C5.14331 2.91707 4.29676 3.87361 4.08173 5.08426C3.99371 5.57987 4.01976 6.07155 4.13839 6.55532C3.90611 6.47607 3.66427 6.40788 3.41459 6.34976L2.5034 6.13763L2.23114 7.0327C1.82826 8.3572 1.79978 9.63207 2.41868 10.6963C2.57148 10.959 2.75517 11.1941 2.96557 11.404C2.71681 11.4512 2.46503 11.5138 2.21129 11.5898L1.30859 11.8604L1.52523 12.7776C1.84362 14.1255 2.46077 15.241 3.52906 15.8534C3.89931 16.0656 4.29497 16.2008 4.70947 16.2703C4.52773 16.4128 4.34893 16.5707 4.17389 16.7444L3.48117 17.4321L4.1519 18.1413C5.01046 19.049 5.98068 19.6727 7.07003 19.7881C7.91945 19.8781 8.71825 19.647 9.4523 19.1906C9.36351 19.4663 9.12031 19.804 8.51559 20.1042L7.61987 20.5488L8.5091 22.3403L9.40482 21.8957C10.6267 21.2891 11.3513 20.342 11.4787 19.2376C11.7133 17.2047 9.91041 15.4817 7.98784 15.2632L7.89033 14.8505C7.65078 13.8363 7.2421 12.9537 6.5994 12.318L6.6957 12.0014C7.05326 10.8259 7.11592 9.68949 6.69286 8.70476C7.76183 7.96881 8.53167 7.05029 8.73528 5.90392C8.95045 4.69249 8.48401 3.50458 7.65011 2.39808Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.6901 2.16132L16.9081 1.65332L16.3468 2.39808C15.5129 3.50458 15.0464 4.69249 15.2616 5.90392C15.4652 7.05029 16.2351 7.96881 17.304 8.70476C16.881 9.68949 16.9436 10.8259 17.3012 12.0014L17.3975 12.318C16.7548 12.9537 16.3461 13.8363 16.1066 14.8505L16.0091 15.2632C14.0865 15.4817 12.2836 17.2047 12.5182 19.2376C12.6456 20.342 13.3702 21.2891 14.5921 21.8957L15.4878 22.3403L16.377 20.5488L15.4813 20.1042C14.8766 19.804 14.6334 19.4663 14.5446 19.1906C15.2786 19.647 16.0774 19.8781 16.9269 19.7881C18.0162 19.6727 18.9864 19.049 19.845 18.1413L20.5157 17.4321L19.823 16.7444C19.648 16.5707 19.4692 16.4128 19.2874 16.2703C19.7019 16.2008 20.0976 16.0656 20.4678 15.8534C21.5361 15.241 22.1533 14.1255 22.4717 12.7776L22.6883 11.8604L21.7856 11.5898C21.5319 11.5138 21.2801 11.4512 21.0313 11.404C21.2417 11.1941 21.4254 10.959 21.5782 10.6963C22.1971 9.63207 22.1686 8.3572 21.7658 7.0327L21.4935 6.13763L20.5823 6.34976C20.3326 6.40788 20.0908 6.47607 19.8585 6.55532C19.9771 6.07155 20.0032 5.57987 19.9152 5.08426C19.7001 3.87361 18.8536 2.91707 17.6901 2.16132Z\" fill=\"currentColor\"/></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,gBAA+zE,EAA/zE,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mjCAAmjC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ojCAAojC,KAAK,eAAc,CAAI,EACv0E,EAEc",
  "debugId": "B36F9F696CC1381764756E2164756E21",
  "names": []
}