{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCloseQuote1/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 IconCloseQuote1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCloseQuote1\"><Path d=\"M6.5 5C4.01472 5 2 7.01472 2 9.5C2 11.9853 4.01472 14 6.5 14C7.12094 14 7.7125 13.8742 8.25061 13.6468C8.14336 13.8428 8.02685 14.0278 7.90233 14.2038C7.11656 15.3147 5.95463 16.1617 4.4453 17.1679L3.61325 17.7226L4.72265 19.3868L5.5547 18.8321C7.04537 17.8383 8.50844 16.8103 9.53517 15.3587C10.5905 13.8667 11.1296 12.0164 10.9999 9.47254C10.9851 6.99989 8.97612 5 6.5 5Z\" fill=\"currentColor\"/><Path d=\"M17.5 5C15.0147 5 13 7.01472 13 9.5C13 11.9853 15.0147 14 17.5 14C18.1209 14 18.7125 13.8742 19.2506 13.6468C19.1434 13.8428 19.0268 14.0278 18.9023 14.2038C18.1166 15.3147 16.9546 16.1617 15.4453 17.1679L14.6132 17.7226L15.7227 19.3868L16.5547 18.8321C18.0454 17.8383 19.5084 16.8103 20.5352 15.3587C21.5905 13.8667 22.1296 12.0164 21.9999 9.47254C21.9851 6.99989 19.9761 5 17.5 5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCloseQuote1;\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,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAA04B,EAA14B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,wXAAwX,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iYAAiY,KAAK,eAAc,CAAI,EACl5B,EAEc",
  "debugId": "4D9803E8EF056E1E64756E2164756E21",
  "names": []
}