{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSignature/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 IconSignature: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSignature\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M9.99121 5.00974C9.70011 4.97414 9.3807 5.03063 9.02296 5.27399C8.43717 5.67248 8.16429 6.12887 8.05717 6.60528C7.9438 7.10947 7.99887 7.7211 8.22928 8.41658C8.59613 9.52393 9.35273 10.677 10.1766 11.6106C11.0573 10.802 11.9655 10.2288 12.8888 10.0068C12.8313 9.29829 12.7376 8.66808 12.6221 8.16532C12.385 7.13361 11.7598 6.09174 11.0165 5.49401C10.6524 5.20123 10.3018 5.04773 9.99121 5.00974ZM14.9028 10.1207C14.8423 9.22591 14.728 8.39956 14.5713 7.7175C14.2459 6.30116 13.4037 4.84716 12.2698 3.93541C11.6953 3.47346 11.0049 3.11881 10.234 3.02453C9.44358 2.92786 8.64095 3.11496 7.89804 3.62034C6.91387 4.28983 6.32985 5.17047 6.10588 6.16655C5.88816 7.13485 6.02783 8.13118 6.33075 9.04554C6.82206 10.5286 7.7988 11.9673 8.80298 13.0745C8.74042 13.1501 8.67772 13.2269 8.6149 13.3051C8.18268 13.8429 7.78303 14.5802 7.48318 15.3502C7.4014 15.5601 7.325 15.7778 7.25634 16H1.00015V18H6.91154C6.90238 18.7553 7.06089 19.6155 7.66882 20.2468C8.37211 20.9772 9.39976 21.1288 10.5257 20.902C12.1152 20.5818 13.1386 19.3866 13.7865 18H23.0002V16H14.4696C14.7381 14.8929 14.8811 13.7024 14.9309 12.5507C15.2607 12.9212 15.6037 13.4819 15.9385 14.3074C16.056 14.5972 16.2753 15.0369 16.7225 15.2671C17.3183 15.5737 17.8568 15.3176 18.1323 15.1008C18.385 14.9019 18.5751 14.6319 18.7068 14.424C18.8456 14.2049 18.9782 13.9579 19.0984 13.725C19.1158 13.8152 19.1387 13.9053 19.1689 13.9925C19.2494 14.225 19.4005 14.5014 19.6848 14.7123C19.9733 14.9263 20.3008 15 20.6006 15H23.0002V13H21.0483C21.0488 12.9741 21.0493 12.9467 21.05 12.9178C21.0507 12.8908 21.0515 12.8615 21.0524 12.8303C21.0595 12.5815 21.0701 12.2096 21.0154 11.8738C20.9509 11.478 20.7578 10.8852 20.1384 10.5539C19.5809 10.2557 19.0496 10.4417 18.7335 10.6657C18.4584 10.8606 18.2547 11.1342 18.1157 11.3439C17.8887 11.6866 17.6592 12.1407 17.4667 12.5218C17.4403 12.574 17.4146 12.6248 17.3897 12.6738C16.7705 11.4679 15.9597 10.5258 14.9028 10.1207ZM17.8414 13.6584C17.8413 13.6587 17.8385 13.6549 17.8334 13.6459C17.8389 13.6535 17.8415 13.658 17.8414 13.6584ZM12.9454 12.0947C12.5756 12.2576 12.1422 12.5375 11.6434 12.9802C11.7016 13.0223 11.758 13.0614 11.8125 13.0974L12.6466 13.649L11.5434 15.3173L10.7093 14.7657C10.5636 14.6693 10.415 14.5623 10.2647 14.4459C10.2345 14.4828 10.2042 14.5202 10.1738 14.558C9.91348 14.8819 9.61921 15.3964 9.37686 16H12.4007C12.7437 14.8193 12.912 13.438 12.9454 12.0947ZM11.4817 18H8.91173C8.90076 18.5204 9.02087 18.7676 9.10947 18.8596C9.15559 18.9075 9.3659 19.0954 10.1307 18.9414C10.6292 18.841 11.0851 18.5315 11.4817 18ZM2.00015 9.5858L3.50015 11.0858L5.00015 9.5858L6.41436 11L4.91436 12.5L6.41436 14L5.00015 15.4142L3.50015 13.9142L2.00015 15.4142L0.585938 14L2.08594 12.5L0.585938 11L2.00015 9.5858Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSignature;\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,gBAA2zF,EAA3zF,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mqFAAmqF,KAAK,eAAc,CAAI,EACn0F,EAEc",
  "debugId": "D0F973F01D9DBFAB64756E2164756E21",
  "names": []
}