{
  "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-filled-radius-0-stroke-2-IconPillow\"><Path d=\"M5 3C3.34315 3 2 4.34315 2 6C2 6.71255 2.249 7.36716 2.66311 7.88118C2.32248 9.12037 2 10.6433 2 12C2 13.3567 2.32248 14.8796 2.66312 16.1188C2.249 16.6328 2 17.2874 2 18C2 19.6569 3.34315 21 5 21C5.75415 21 6.44311 20.7212 6.96946 20.2629C8.44781 20.6316 10.3338 21 12 21C13.6662 21 15.5522 20.6316 17.0305 20.2629C17.5569 20.7212 18.2458 21 19 21C20.6569 21 22 19.6569 22 18C22 17.2874 21.751 16.6328 21.3369 16.1188C21.6775 14.8796 22 13.3567 22 12C22 10.6433 21.6775 9.12037 21.3369 7.88118C21.751 7.36716 22 6.71255 22 6C22 4.34315 20.6569 3 19 3C18.2429 3 17.5515 3.28097 17.0244 3.74248C15.5363 3.37239 13.6403 3 12 3C10.3597 3 8.46371 3.37239 6.97564 3.74248C6.44851 3.28097 5.75711 3 5 3Z\" fill=\"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,gBAA2yB,EAA3yB,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,4rBAA4rB,KAAK,eAAc,CAAI,EACnzB,EAEc",
  "debugId": "56542402A6EDA1E164756E2164756E21",
  "names": []
}