{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWind/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 IconWind: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconWind\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11 5C10.7236 5 10.475 5.11083 10.2929 5.29289L9.58579 6L8.17157 4.58579L8.87868 3.87868C9.42048 3.33688 10.1718 3 11 3C12.6569 3 14 4.34315 14 6C14 7.65685 12.6569 9 11 9H2V7H11C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5ZM19 9C18.7236 9 18.475 9.11083 18.2929 9.29289L17.5858 10L16.1716 8.58579L16.8787 7.87868C17.4205 7.33688 18.1718 7 19 7C20.6569 7 22 8.34315 22 10C22 11.6569 20.6569 13 19 13H2V11H19C19.5523 11 20 10.5523 20 10C20 9.44772 19.5523 9 19 9ZM2 15H15C16.6569 15 18 16.3431 18 18C18 19.6569 16.6569 21 15 21C14.1718 21 13.4205 20.6631 12.8787 20.1213L12.1716 19.4142L13.5858 18L14.2929 18.7071C14.475 18.8892 14.7236 19 15 19C15.5523 19 16 18.5523 16 18C16 17.4477 15.5523 17 15 17H2V15Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWind;\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,EAA6D,EAAM,KAAK,CAAC,IAAU,CAC9F,OAAO,gBAA+1B,EAA/1B,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4sBAA4sB,KAAK,eAAc,CAAI,EACv2B,EAEc",
  "debugId": "010AA8B0EF53551564756E2164756E21",
  "names": []
}