{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconColorPalette2/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 IconColorPalette2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconColorPalette2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 12.6198 21.9426 13.227 21.834 13.8164C21.5758 15.2166 20.3015 15.9999 19.0723 16H14C13.4477 16 13 16.4477 13 17V19C13 20.5777 11.6526 22.1737 9.7959 21.7559C5.33382 20.7516 2 16.7664 2 12C2 6.47715 6.47715 2 12 2ZM7.0498 11.9004C6.3044 11.9006 5.7002 12.5045 5.7002 13.25C5.70025 13.9954 6.30443 14.5994 7.0498 14.5996C7.79536 14.5996 8.40034 13.9955 8.40039 13.25C8.40039 12.5044 7.79539 11.9004 7.0498 11.9004ZM17.25 9.2998C16.5045 9.2998 15.9006 9.90401 15.9004 10.6494C15.9004 11.395 16.5044 12 17.25 12C17.9955 11.9999 18.5996 11.395 18.5996 10.6494C18.5994 9.90404 17.9954 9.29986 17.25 9.2998ZM8.25 6.7998C7.50442 6.7998 6.90039 7.40481 6.90039 8.15039C6.90058 8.89582 7.50453 9.5 8.25 9.5C8.99543 9.49995 9.59942 8.89579 9.59961 8.15039C9.59961 7.40484 8.99554 6.79986 8.25 6.7998ZM13.3496 5.60059C12.6042 5.6008 12 6.20474 12 6.9502C12.0001 7.6956 12.6042 8.29959 13.3496 8.2998C14.0952 8.2998 14.7001 7.69573 14.7002 6.9502C14.7002 6.20461 14.0952 5.60059 13.3496 5.60059Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconColorPalette2;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAypC,EAAzpC,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6/BAA6/B,KAAK,eAAc,CAAI,EACjqC,EAEc",
  "debugId": "AA0EFB4C73E80B3064756E2164756E21",
  "names": []
}