{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBezierCurves1/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 IconBezierCurves1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBezierCurves1\"><Path d=\"M19 17C20.1046 17 21 17.8954 21 19C21 20.1046 20.1046 21 19 21C18.2601 21 17.6155 20.5973 17.2695 20H15.5V18H17.2695C17.6155 17.4027 18.2601 17 19 17Z\" fill=\"currentColor\"/><Path d=\"M21 6C18.4979 6 16.9406 6.78236 15.793 7.90332C14.591 9.07733 13.7854 10.6656 12.8945 12.4473C12.0354 14.1656 11.091 16.0773 9.60547 17.5283C8.06563 19.0323 5.99789 20 3 20V18C5.5021 18 7.05937 17.2176 8.20703 16.0967C9.40899 14.9227 10.2146 13.3344 11.1055 11.5527C11.9646 9.8344 12.909 7.92267 14.3945 6.47168C15.9344 4.96765 18.0021 4 21 4V6Z\" fill=\"currentColor\"/><Path d=\"M14 20H11V18H14V20Z\" fill=\"currentColor\"/><Path d=\"M5 3C5.73993 3 6.38454 3.40267 6.73047 4H8.5V6H6.73047C6.38454 6.59733 5.73993 7 5 7C3.89543 7 3 6.10457 3 5C3 3.89543 3.89543 3 5 3Z\" fill=\"currentColor\"/><Path d=\"M13 6H10V4H13V6Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBezierCurves1;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAg5B,EAAh5B,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4VAA4V,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sBAAsB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wIAAwI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,KAAK,eAAc,CAAI,EACx5B,EAEc",
  "debugId": "D9A8053D7D268D1164756E2164756E21",
  "names": []
}