{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconOpenQuote2/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 IconOpenQuote2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconOpenQuote2\"><Path d=\"M19 3.55664L17.6489 4.06331L18 4.99964C17.6489 4.06331 17.6479 4.06367 17.6479 4.06367L17.6469 4.06406L17.6445 4.06496L17.6387 4.06719L17.6226 4.07342C17.61 4.07837 17.5937 4.08493 17.5737 4.09315C17.5339 4.10957 17.4799 4.13265 17.4137 4.1628C17.2815 4.22302 17.0996 4.31188 16.8847 4.43275C16.4567 4.67355 15.8873 5.04702 15.3161 5.5826C14.1618 6.66471 13 8.41435 13 10.9996V19.9996H22V9.99964H19V3.55664Z\" fill=\"currentColor\"/><Path d=\"M7.99906 3.55713L6.64888 4.06345L7 4.99978C6.64888 4.06345 6.64793 4.0638 6.64793 4.0638L6.64688 4.0642L6.64452 4.06509L6.63868 4.06732L6.62264 4.07356C6.61004 4.07851 6.59366 4.08507 6.57375 4.09328C6.53394 4.1097 6.47991 4.13278 6.41371 4.16293C6.28146 4.22315 6.09963 4.31201 5.88474 4.43289C5.45666 4.67369 4.88734 5.04716 4.31606 5.58274C3.16181 6.66485 2 8.41449 2 10.9998V19.9998H10.9995L11.0044 9.99978H8.00326L7.99906 3.55713Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconOpenQuote2;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAg+B,EAAh+B,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,0ZAA0Z,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sbAAsb,KAAK,eAAc,CAAI,EACx+B,EAEc",
  "debugId": "3910F539BB577D3364756E2164756E21",
  "names": []
}