{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconColors/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 IconColors: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconColors\"><Path d=\"M7.17633 9.94576C6.88445 9.28834 6.72222 8.56023 6.72222 7.79412C6.72222 4.87026 9.08516 2.5 12 2.5C14.9148 2.5 17.2778 4.87026 17.2778 7.79412C17.2778 8.56023 17.1155 9.28834 16.8237 9.94576M7.17633 9.94576C4.54471 10.2452 2.5 12.486 2.5 15.2059C2.5 18.1297 4.86294 20.5 7.77778 20.5C9.50424 20.5 11.0371 19.6685 12 18.3829M7.17633 9.94576C7.92068 11.6223 9.5082 12.8391 11.3986 13.0542M16.8237 9.94576C16.6263 9.9233 16.4256 9.91177 16.2222 9.91177C14.4958 9.91177 12.9629 10.7433 12 12.0289M16.8237 9.94576C19.4553 10.2452 21.5 12.486 21.5 15.2059C21.5 18.1297 19.1371 20.5 16.2222 20.5C14.4958 20.5 12.9629 19.6685 12 18.3829M12 12.0289C11.7632 12.3451 11.5608 12.6887 11.3986 13.0542M12 12.0289C12.2368 12.3451 12.4392 12.6887 12.6014 13.0542M11.3986 13.0542C11.5959 13.0767 11.7966 13.0882 12 13.0882C12.2034 13.0882 12.4041 13.0767 12.6014 13.0542M12.6014 13.0542C12.8933 13.7117 13.0556 14.4398 13.0556 15.2059C13.0556 16.3979 12.6628 17.498 12 18.3829\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconColors;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAsjC,EAAtjC,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,m8BAAm8B,OAAO,eAAc,CAAI,EAC9jC,EAEc",
  "debugId": "682E933F5E61BFC164756E2164756E21",
  "names": []
}