{
  "version": 3,
  "sources": ["src/IconPillowZz/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPillowZz: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconPillowZz\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 5.625C2 4.17835 3.16595 3 4.61111 3C4.87775 3 5.13592 3.04034 5.37942 3.11562C5.5549 3.16987 5.73307 3.23198 5.90245 3.29102L6.00835 3.32787C6.21341 3.39898 6.40716 3.46398 6.59742 3.51542C6.9803 3.61893 7.30689 3.65505 7.60403 3.58762C8.99338 3.27231 10.595 3 12 3C13.405 3 15.0066 3.27231 16.396 3.58762C16.6931 3.65505 17.0197 3.61893 17.4026 3.51542C17.5928 3.46398 17.7866 3.39898 17.9916 3.32787L18.0976 3.29102C18.2669 3.23197 18.4451 3.16987 18.6206 3.11562C18.8641 3.04034 19.1223 3 19.3889 3C20.8341 3 22 4.17835 22 5.625C22 5.868 21.967 6.10407 21.905 6.32856C21.8593 6.49417 21.8069 6.66307 21.757 6.8242L21.7189 6.9476C21.6568 7.14961 21.6002 7.34098 21.5565 7.52855C21.4685 7.90595 21.4422 8.22941 21.5129 8.52221C21.7821 9.63634 22 10.8797 22 12C22 13.1203 21.7821 14.3636 21.5129 15.4777C21.4422 15.7705 21.4685 16.094 21.5565 16.4714C21.6003 16.659 21.6568 16.8503 21.7189 17.0524L21.7571 17.1758C21.807 17.3369 21.8594 17.5059 21.9051 17.6714C21.9671 17.8959 22.0001 18.132 22.0001 18.375C22.0001 19.8217 20.8341 21 19.3889 21C19.1241 21 18.8675 20.9602 18.6254 20.8859C18.4503 20.8321 18.2723 20.7705 18.1032 20.7119L17.9972 20.6753C17.7924 20.6047 17.5989 20.5402 17.4088 20.4892C17.0263 20.3866 16.6999 20.3509 16.403 20.4182C15.0226 20.7312 13.4265 21 12 21C10.5735 21 8.97746 20.7312 7.59703 20.4182C7.30009 20.3509 6.97371 20.3866 6.59125 20.4892C6.40118 20.5402 6.20764 20.6047 6.00282 20.6753L5.89684 20.7119C5.72775 20.7705 5.5498 20.8321 5.37463 20.8859C5.13253 20.9602 4.876 21 4.61111 21C3.16595 21 2 19.8217 2 18.375C2 18.132 2.03298 17.8959 2.09498 17.6714C2.14073 17.5058 2.19306 17.3369 2.243 17.1758L2.28113 17.0524C2.34325 16.8504 2.39976 16.659 2.44349 16.4714C2.53148 16.0941 2.55782 15.7706 2.48708 15.4778C2.2179 14.3637 2 13.1203 2 12C2 10.8797 2.2179 9.63634 2.48708 8.52221C2.55782 8.22941 2.53148 7.90595 2.44349 7.52855C2.39976 7.34098 2.34325 7.14961 2.28113 6.9476L2.243 6.82424C2.19306 6.66308 2.14072 6.4942 2.09498 6.32856C2.03297 6.10407 2 5.868 2 5.625ZM9.5 8C9.22386 8 9 8.22386 9 8.5C9 8.77614 9.22386 9 9.5 9H13.5284L9.09313 15.2094C8.98427 15.3618 8.96971 15.5623 9.05542 15.7288C9.14112 15.8953 9.31271 16 9.5 16H14.5C14.7761 16 15 15.7761 15 15.5C15 15.2239 14.7761 15 14.5 15H10.4716L14.9069 8.79062C15.0157 8.63821 15.0303 8.43775 14.9446 8.27121C14.8589 8.10467 14.6873 8 14.5 8H9.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPillowZz;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAAiE,EAAM,KAAK,CAAC,IACjF,gBAAo8E,EAAp8E,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8yEAA8yE,KAAK,eAAc,CAAI,CAC58E,EAEc",
  "debugId": "BCB994863273EB6A64756E2164756E21",
  "names": []
}