{
  "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-filled-radius-0-stroke-2-IconPillowZz\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 6C2 4.34315 3.34315 3 5 3C5.75711 3 6.44851 3.28097 6.97564 3.74248C8.46371 3.37239 10.3597 3 12 3C13.6403 3 15.5363 3.37239 17.0244 3.74248C17.5515 3.28097 18.2429 3 19 3C20.6569 3 22 4.34315 22 6C22 6.71255 21.751 7.36716 21.3369 7.88118C21.6775 9.12037 22 10.6433 22 12C22 13.3567 21.6775 14.8796 21.3369 16.1188C21.751 16.6328 22 17.2874 22 18C22 19.6569 20.6569 21 19 21C18.2458 21 17.5569 20.7212 17.0305 20.2629C15.5522 20.6316 13.6662 21 12 21C10.3338 21 8.44781 20.6316 6.96946 20.2629C6.44311 20.7212 5.75415 21 5 21C3.34315 21 2 19.6569 2 18C2 17.2874 2.249 16.6328 2.66312 16.1188C2.32248 14.8796 2 13.3567 2 12C2 10.6433 2.32248 9.12037 2.66311 7.88118C2.249 7.36716 2 6.71255 2 6ZM9 8.5V10.5H12.1379L9 13.4418V15.5H15V13.5H11.8621L15 10.5582V8.5H9Z\" 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,gBAAu5B,EAAv5B,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gwBAAgwB,KAAK,eAAc,CAAI,EAC/5B,EAEc",
  "debugId": "30E010F1F3239E4064756E2164756E21",
  "names": []
}