{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindPower/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 IconWindPower: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconWindPower\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.513 1.97119H8.98993L8.98993 9.21553C8.97648 9.23818 8.96327 9.261 8.95032 9.28398L5.70762 11.1562C4.03359 12.1227 3.46003 14.2632 4.42653 15.9372L5.68808 18.1223L9.66305 15.8274L8.85634 20H4.00149V22H20.0015V20H15.1466L14.34 15.8278L15.2838 16.3727C16.9578 17.3392 19.0984 16.7656 20.0649 15.0916L21.3264 12.9065L15.0529 9.28449C15.0399 9.26133 15.0266 9.23834 15.013 9.21551L15.013 5.47119C15.013 3.53819 13.446 1.97119 11.513 1.97119ZM13.013 7.6484L13.013 5.47119C13.013 4.64276 12.3415 3.97119 11.513 3.97119H10.9899L10.9899 7.6484C11.3102 7.55188 11.6498 7.5 12.0015 7.5C12.3532 7.5 12.6928 7.55188 13.013 7.6484ZM14.3973 13.5515C14.8911 13.0876 15.2502 12.4821 15.4097 11.7999L18.5944 13.6385L18.3328 14.0916C17.9186 14.809 17.0012 15.0548 16.2838 14.6406L14.3973 13.5515ZM8.59323 11.7995C8.75267 12.4818 9.1117 13.0874 9.6054 13.5512L6.42013 15.3903L6.15858 14.9372C5.74436 14.2198 5.99018 13.3024 6.70762 12.8882L8.59323 11.7995ZM12.0015 9.5C11.1731 9.5 10.5015 10.1716 10.5015 11C10.5015 11.8284 11.1731 12.5 12.0015 12.5C12.8299 12.5 13.5015 11.8284 13.5015 11C13.5015 10.1716 12.8299 9.5 12.0015 9.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWindPower;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAqvC,EAArvC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6lCAA6lC,KAAK,eAAc,CAAI,EAC7vC,EAEc",
  "debugId": "A74D82694595A89B64756E2164756E21",
  "names": []
}