{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCurtain/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 IconCurtain: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCurtain\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.9089 4.00009C8.90016 3.99997 8.89139 3.99997 8.88261 4.00009H2V20.0001H8.98197L8.99983 19.0183C8.99995 19.0122 9.00005 19.0062 9.00014 19.0001H14.9999C15 19.0062 15.0001 19.0122 15.0002 19.0183L15.018 20.0001H22V4.00009H15.1174C15.1086 3.99997 15.0998 3.99997 15.0911 4.00009H8.9089ZM16.0239 6.00009C15.9129 7.90884 16.1888 9.28648 16.8386 10.3166C17.4317 11.2569 18.4147 12.0298 20 12.6295V6.00009H16.0239ZM20 14.9928V18.0001H17.0794C17.2288 17.1936 17.5788 16.4906 18.0664 15.9713C18.556 15.45 19.2052 15.0889 20 14.9928ZM6.92056 18.0001C6.77118 17.1936 6.42121 16.4906 5.93359 15.9713C5.444 15.45 4.79484 15.0889 4 14.9928V18.0001H6.92056ZM4 12.6295C5.58534 12.0298 6.5683 11.2569 7.16142 10.3166C7.81117 9.28648 8.0871 7.90884 7.97611 6.00009H4V12.6295Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCurtain;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAi5B,EAAj5B,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2vBAA2vB,KAAK,eAAc,CAAI,EACz5B,EAEc",
  "debugId": "F79DD0F4E15952F764756E2164756E21",
  "names": []
}