{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPencilWave/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 IconPencilWave: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPencilWave\"><Path d=\"M17 1.58594L21.4142 6.00015L6.41421 21.0002H2V16.5859L17 1.58594Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.7564 18.654L22.41 17.8972L20.8965 16.5898L20.2447 17.3444L20.244 17.3453L20.2395 17.3503C20.2336 17.3568 20.2231 17.3685 20.2082 17.3844C20.1784 17.4164 20.1314 17.4654 20.0696 17.5256C19.9449 17.6472 19.7657 17.809 19.5497 17.9691C19.0886 18.3108 18.5943 18.5447 18.1656 18.5447C17.707 18.5447 17.2518 18.3274 16.5345 17.9467L16.4547 17.9043C15.836 17.5748 14.973 17.1153 13.9862 17.1153C12.097 17.1153 10.9262 18.1664 10.2728 18.8579L9.58594 19.5847L11.0396 20.9583L11.7264 20.2315C12.2544 19.6727 12.9298 19.1153 13.9862 19.1153C14.429 19.1153 14.8735 19.3294 15.5969 19.7133L15.6627 19.7483C16.288 20.0809 17.1601 20.5447 18.1656 20.5447C19.237 20.5447 20.1596 20.0064 20.7405 19.5759C21.0455 19.3499 21.2935 19.1256 21.4658 18.9576C21.5525 18.8731 21.6215 18.8014 21.6705 18.7489C21.695 18.7226 21.7146 18.7011 21.729 18.685L21.7466 18.6651L21.7525 18.6584L21.7547 18.6559L21.7564 18.654Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.7568 18.6539L21 18.0002C21.7568 18.6539 21.7568 18.6539 21.7568 18.6539Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPencilWave;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAgxC,EAAhxC,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,oEAAoE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,o4BAAo4B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+EAA+E,KAAK,eAAc,CAAI,EACxxC,EAEc",
  "debugId": "96CFB67F5FE5999264756E2164756E21",
  "names": []
}