{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGift1/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 IconGift1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconGift1\"><Path d=\"M6 4.66667C6 3.19391 7.19391 2 8.66667 2C10.007 2 11.2051 2.60849 12 3.56429C12.7949 2.60849 13.993 2 15.3333 2C16.8061 2 18 3.19391 18 4.66667C18 5.52576 17.75 6.32647 17.3188 7H21V11H13V7H13.6667C14.9553 7 16 5.95533 16 4.66667C16 4.29848 15.7015 4 15.3333 4C14.0447 4 13 5.04467 13 6.33333V7H11V6.33333C11 5.04467 9.95533 4 8.66667 4C8.29848 4 8 4.29848 8 4.66667C8 5.95533 9.04467 7 10.3333 7H11V11H3V7H6.68121C6.25 6.32647 6 5.52576 6 4.66667Z\" fill=\"currentColor\"/><Path d=\"M13 13H20V21H13V13Z\" fill=\"currentColor\"/><Path d=\"M11 13V21H4V13H11Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGift1;\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,EAA8D,EAAM,KAAK,CAAC,IAAU,CAC/F,OAAO,gBAAspB,EAAtpB,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,EAAE,mcAAmc,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sBAAsB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qBAAqB,KAAK,eAAc,CAAI,EAC9pB,EAEc",
  "debugId": "8D7E737903F5217A64756E2164756E21",
  "names": []
}