{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWashingMachine/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 IconWashingMachine: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconWashingMachine\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 3H3V21H21V3ZM5 6.25C5 5.55964 5.55964 5 6.25 5C6.94036 5 7.5 5.55964 7.5 6.25C7.5 6.94036 6.94036 7.5 6.25 7.5C5.55964 7.5 5 6.94036 5 6.25ZM15.7826 14.3042C15.2418 15.873 13.7525 17 12 17C10.1832 17 8.64927 15.7887 8.16175 14.1297L8.60111 13.7992C9.08549 13.4349 9.47518 13.3807 9.86089 13.4322C10.3167 13.4931 10.7819 13.6995 11.4373 13.9903L11.4725 14.0059C12.0861 14.2782 12.8727 14.6235 13.7436 14.6935C14.4112 14.7472 15.0924 14.6393 15.7826 14.3042ZM15.8383 11.8704L15.3989 12.2009C14.8041 12.6482 14.3288 12.7341 13.9039 12.7C13.4196 12.661 12.9279 12.4636 12.2835 12.1778L12.1542 12.1201C11.5889 11.8679 10.877 11.5502 10.1256 11.4498C9.49902 11.3661 8.85638 11.4306 8.20973 11.7184C8.74397 10.1378 10.2391 9 12 9C13.8169 9 15.3508 10.2113 15.8383 11.8704Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWashingMachine;\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,EAAuE,EAAM,KAAK,CAAC,IAAU,CACxG,OAAO,gBAAi6B,EAAj6B,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,owBAAowB,KAAK,eAAc,CAAI,EACz6B,EAEc",
  "debugId": "DE0E3F7B69B269B164756E2164756E21",
  "names": []
}