{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPillowZz/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 IconPillowZz: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconPillowZz\"><Path d=\"M9.5 8.5H14.5V9L9.5 15V15.5H14.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M6.34623 4.41419L5.9347 4.69817L6.13491 4.98832L6.47546 4.89721L6.34623 4.41419ZM3.33046 7.31449L3.80988 7.45647L3.90733 7.12741L3.63531 6.91817L3.33046 7.31449ZM3.33046 16.6855L3.63531 17.0818L3.90733 16.8726L3.80988 16.5435L3.33046 16.6855ZM6.34224 19.5916L6.4721 19.1087L6.13239 19.0174L5.93164 19.3062L6.34224 19.5916ZM17.6578 19.5916L18.0684 19.3062L17.8677 19.0173L17.5279 19.1087L17.6578 19.5916ZM20.6695 16.6855L20.1901 16.5435L20.0927 16.8726L20.3647 17.0818L20.6695 16.6855ZM20.6695 7.31449L20.3647 6.91817L20.0927 7.12741L20.1901 7.45647L20.6695 7.31449ZM17.6538 4.41419L17.5245 4.89721L17.8651 4.98832L18.0653 4.69817L17.6538 4.41419ZM6.75777 4.13022C6.28771 3.44901 5.50215 3 4.61111 3V4C5.15789 4 5.64229 4.27441 5.9347 4.69817L6.75777 4.13022ZM4.61111 3C3.16595 3 2 4.17835 2 5.625H3C3 4.72444 3.72441 4 4.61111 4V3ZM2 5.625C2 6.47494 2.40245 7.23148 3.02562 7.71081L3.63531 6.91817C3.24886 6.62093 3 6.15283 3 5.625H2ZM2.85104 7.17251C2.43952 8.56209 2 10.4104 2 12H3C3 10.5597 3.40474 8.82451 3.80988 7.45647L2.85104 7.17251ZM2 12C2 13.5896 2.43952 15.4379 2.85104 16.8275L3.80988 16.5435C3.40474 15.1755 3 13.4403 3 12H2ZM3 18.375C3 17.8472 3.24886 17.3791 3.63531 17.0818L3.02562 16.2892C2.40245 16.7685 2 17.5251 2 18.375H3ZM4.61111 20C3.72441 20 3 19.2756 3 18.375H2C2 19.8217 3.16595 21 4.61111 21V20ZM5.93164 19.3062C5.63892 19.7275 5.156 20 4.61111 20V21C5.49904 21 6.28224 20.5541 6.75284 19.8769L5.93164 19.3062ZM6.21239 20.0744C7.82806 20.5089 10.0731 21 12 21V20C10.2094 20 8.06843 19.538 6.4721 19.1087L6.21239 20.0744ZM12 21C13.9269 21 16.172 20.5089 17.7877 20.0744L17.5279 19.1087C15.9316 19.538 13.7906 20 12 20V21ZM17.2472 19.8769C17.7178 20.5541 18.501 21 19.3889 21V20C18.8441 20 18.3611 19.7275 18.0684 19.3062L17.2472 19.8769ZM19.3889 21C20.8341 21 22.0001 19.8217 22.0001 18.375H21.0001C21.0001 19.2756 20.2757 20 19.3889 20V21ZM22.0001 18.375C22.0001 17.525 21.5976 16.7685 20.9744 16.2891L20.3647 17.0818C20.7512 17.379 21.0001 17.8472 21.0001 18.375H22.0001ZM21.149 16.8275C21.5605 15.4379 22 13.5896 22 12H21C21 13.4403 20.5953 15.1755 20.1901 16.5435L21.149 16.8275ZM22 12C22 10.4104 21.5605 8.56209 21.149 7.17251L20.1901 7.45647C20.5953 8.82451 21 10.5597 21 12H22ZM20.9744 7.71081C21.5976 7.23148 22 6.47494 22 5.625H21C21 6.15283 20.7511 6.62093 20.3647 6.91817L20.9744 7.71081ZM22 5.625C22 4.17835 20.8341 3 19.3889 3V4C20.2756 4 21 4.72444 21 5.625H22ZM19.3889 3C18.4978 3 17.7123 3.44901 17.2422 4.13022L18.0653 4.69817C18.3577 4.27441 18.8421 4 19.3889 4V3ZM17.783 3.93118C16.1549 3.49561 13.894 3 12 3V4C13.7567 4 15.9125 4.46593 17.5245 4.89721L17.783 3.93118ZM12 3C10.106 3 7.84507 3.49561 6.21701 3.93118L6.47546 4.89721C8.08748 4.46593 10.2433 4 12 4V3Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPillowZz;\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,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAAq2F,EAAr2F,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,mCAAmC,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,ypFAAypF,KAAK,eAAc,CAAI,EAC72F,EAEc",
  "debugId": "ABA87872765D4FE664756E2164756E21",
  "names": []
}