{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPillow/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 IconPillow: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconPillow\"><Path d=\"M6.34623 4.41419C5.965 3.86171 5.33002 3.5 4.61111 3.5C3.44518 3.5 2.5 4.45139 2.5 5.625C2.5 6.31388 2.82566 6.9262 3.33046 7.31449C2.92213 8.6933 2.5 10.485 2.5 12C2.5 13.515 2.92213 15.3067 3.33046 16.6855C2.82566 17.0738 2.5 17.6861 2.5 18.375C2.5 19.5486 3.44518 20.5 4.61111 20.5C5.32752 20.5 5.96058 20.1408 6.34224 19.5916C7.94824 20.0235 10.1413 20.5 12 20.5C13.8587 20.5 16.0518 20.0235 17.6578 19.5916C18.0395 20.1408 18.6725 20.5 19.3889 20.5C20.5549 20.5 21.5001 19.5486 21.5001 18.375C21.5001 17.6861 21.1744 17.0738 20.6695 16.6855C21.0779 15.3067 21.5 13.5149 21.5 12C21.5 10.485 21.0779 8.6933 20.6695 7.31449C21.1743 6.9262 21.5 6.31388 21.5 5.625C21.5 4.45139 20.5548 3.5 19.3889 3.5C18.67 3.5 18.035 3.86171 17.6538 4.41419C16.0337 3.98077 13.8253 3.5 12 3.5C10.1747 3.5 7.96627 3.98077 6.34623 4.41419Z\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPillow;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA46B,EAA56B,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,yzBAAyzB,OAAO,eAAc,CAAI,EACp7B,EAEc",
  "debugId": "7FC0A2529F0F858764756E2164756E21",
  "names": []
}