{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPaperclip3/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 IconPaperclip3: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPaperclip3\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.4856 3.11824C15.2305 2.37298 16.2089 1.99999 17.1841 2C18.1593 2.00001 19.1376 2.37301 19.8825 3.11824C20.6274 3.86352 21 4.84224 21 5.81755C20.9999 6.7927 20.6273 7.77122 19.8825 8.51637L9.92671 18.477C8.9863 19.4179 7.4614 19.4179 6.52099 18.477C5.58086 17.5364 5.58085 16.0116 6.52099 15.071L12.2058 9.38343L13.6204 10.7973L7.93555 16.4849C7.776 16.6445 7.776 16.9036 7.93555 17.0632C8.09483 17.2225 8.35287 17.2225 8.51215 17.0632L18.4679 7.10251C18.8227 6.74753 18.9999 6.28418 19 5.81742C19 5.35059 18.8228 4.88714 18.4679 4.5321C18.1131 4.17712 17.6502 4.00001 17.1841 4C16.7179 3.99999 16.255 4.17711 15.9002 4.5321L5.9444 14.4928C5.3146 15.1229 4.99993 15.9468 4.99997 16.7742C5.00001 17.6014 5.31467 18.4253 5.94439 19.0553C6.57414 19.6854 7.39741 20 8.22388 20C9.05032 20 9.87358 19.6853 10.5033 19.0553L16.1881 13.3677L17.6027 14.7816L11.9179 20.4692C10.8981 21.4895 9.55939 22 8.22389 22C6.88836 22 5.54964 21.4895 4.52983 20.4692C3.51012 19.449 3.00003 18.1099 2.99997 16.7743C2.99991 15.4385 3.51 14.0992 4.52983 13.0789L14.4856 3.11824Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPaperclip3;\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,gBAA4rC,EAA5rC,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,miCAAmiC,KAAK,eAAc,CAAI,EACpsC,EAEc",
  "debugId": "9ECABDE4EF8974C064756E2164756E21",
  "names": []
}