{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconToiletPaper/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 IconToiletPaper: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconToiletPaper\"><Path d=\"M7 11.25C7.41421 11.25 7.75 10.6904 7.75 10C7.75 9.30964 7.41421 8.75 7 8.75C6.58579 8.75 6.25 9.30964 6.25 10C6.25 10.6904 6.58579 11.25 7 11.25Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.98425 14.6899C4.5803 15.8819 5.58874 17 7 17H9V21H21V10C21 8.22156 20.6417 6.56205 20.0157 5.31015C19.4197 4.11805 18.4113 3 17 3H7C5.58874 3 4.5803 4.11805 3.98425 5.31015C3.3583 6.56205 3 8.22156 3 10C3 11.7784 3.3583 13.4379 3.98425 14.6899ZM5.77311 6.20457C5.31327 7.12424 5 8.46473 5 10C5 11.5353 5.31327 12.8758 5.77311 13.7954C6.26285 14.7749 6.7544 15 7 15C7.2456 15 7.73715 14.7749 8.22689 13.7954C8.68673 12.8758 9 11.5353 9 10C9 8.65664 8.76015 7.46241 8.39214 6.56873C8.33956 6.44107 8.28437 6.31953 8.22689 6.20457C7.73715 5.22509 7.2456 5 7 5C6.7544 5 6.26285 5.22509 5.77311 6.20457Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconToiletPaper;\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,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAAw6B,EAAx6B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4lBAA4lB,KAAK,eAAc,CAAI,EACh7B,EAEc",
  "debugId": "73C74B2F82918A7264756E2164756E21",
  "names": []
}