{
  "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-outlined-radius-0-stroke-1-IconSignature\"><Path d=\"M13.5363 7.68773C13.7309 8.53137 13.8649 9.63763 13.9035 10.8468C14.0288 14.7775 13.145 19.7958 10.0499 20.4168C6.01633 21.2261 7.55325 15.912 9.05381 14.0523C9.33206 13.7074 9.60526 13.3909 9.8733 13.1025C7.44392 10.8009 4.70847 6.24457 8.0577 3.97509C10.4058 2.38403 12.9364 5.08667 13.5363 7.68773Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M1.5 16.5H22.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M1.5 11L3.25 12.75L5 14.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M5 11L3.25 12.75L1.5 14.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M22.4997 14.4998H21.0069C19.8331 14.4998 20.9475 11.8992 20.0108 11.4001C19.0154 10.8698 17.8876 16.1766 17.0224 14.052C16.2083 12.0528 15.1614 10.9616 13.9033 10.8466C12.7358 10.7398 11.3866 11.4736 9.87305 13.1023C10.2824 13.4901 10.6831 13.8139 11.0445 14.052\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,gBAAu+B,EAAv+B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,gTAAgT,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,4BAA4B,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,4BAA4B,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,yQAAyQ,OAAO,eAAe,cAAc,SAAQ,CAAI,EAC/+B,EAEc",
  "debugId": "94366B6754B0DE1164756E2164756E21",
  "names": []
}