{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRepaint/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 IconRepaint: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconRepaint\"><Path d=\"M3 12.2892C3 12.5566 3.01129 12.8213 3.03343 13.0829C3.30941 16.3444 5.27048 19.1258 8.04272 20.5532M19.9134 6.98109C18.2348 4.57454 15.4459 3 12.2892 3C8.90596 3 5.94515 4.8087 4.32097 7.5119L4 8\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M3.5 3.5V8.5H8.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M13.7543 16C14.9945 16 16 17.0055 16 18.2457C16 20.7627 13.2464 20.4915 11.5085 20.4915C11.5085 18.7536 11.2373 16 13.7543 16Z\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M14 15.45C15.6109 13.2804 17.0353 11.9355 19.384 10.7045C19.9291 10.4188 20.5935 10.5401 21.0283 10.9757C21.4617 11.41 21.5824 12.072 21.2986 12.616C20.0733 14.9646 18.7353 16.391 16.5809 17.9998\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconRepaint;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAo2B,EAAp2B,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,uMAAuM,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,iIAAiI,OAAO,eAAe,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,sMAAsM,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,EAC52B,EAEc",
  "debugId": "8D4A59138D831F3D64756E2164756E21",
  "names": []
}