{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconColorPalette/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 IconColorPalette: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconColorPalette\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 12C2 6.70021 6.53177 2.5 12 2.5C17.4682 2.5 22 6.70021 22 12C22 13.8745 21.4956 15.2203 20.3489 15.934C19.3012 16.5862 17.9971 16.505 16.9757 16.3722C16.6127 16.325 16.2303 16.2618 15.8716 16.2026C15.7085 16.1756 15.5503 16.1495 15.401 16.126C14.8971 16.0469 14.457 15.9912 14.0719 15.9856C13.2977 15.9743 13.04 16.156 12.8944 16.4472C12.8115 16.6132 12.7927 16.8404 12.9232 17.2271C13.0404 17.5743 13.2277 17.9133 13.444 18.3048C13.4827 18.3748 13.5223 18.4465 13.5626 18.5203C13.6825 18.7396 13.8185 18.9967 13.9142 19.2501C14.0021 19.4825 14.117 19.8626 14.0318 20.2788C13.9272 20.7897 13.576 21.1307 13.1661 21.3072C12.8121 21.4596 12.4013 21.5 12 21.5C6.53177 21.5 2 17.2998 2 12ZM10.5 9.5C11.3284 9.5 12 8.82843 12 8C12 7.17157 11.3284 6.5 10.5 6.5C9.67157 6.5 9 7.17157 9 8C9 8.82843 9.67157 9.5 10.5 9.5ZM8.75 12.25C8.75 13.0784 8.07843 13.75 7.25 13.75C6.42157 13.75 5.75 13.0784 5.75 12.25C5.75 11.4216 6.42157 10.75 7.25 10.75C8.07843 10.75 8.75 11.4216 8.75 12.25ZM15.5 11C16.3284 11 17 10.3284 17 9.5C17 8.67157 16.3284 8 15.5 8C14.6716 8 14 8.67157 14 9.5C14 10.3284 14.6716 11 15.5 11Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconColorPalette;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAA6uC,EAA7uC,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,klCAAklC,KAAK,eAAc,CAAI,EACrvC,EAEc",
  "debugId": "B01BCDE93C753F5164756E2164756E21",
  "names": []
}