{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSandbox/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 IconSandbox: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSandbox\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.3343 1.56885L21.2662 2.54306L20.6153 7.17458L18.0004 7.81691L17.4472 11.7535L20.8966 15H22V21H2V15H3.03756L4.54073 13.2316L3.07939 6.66942L4.64681 6.44913C4.41622 4.8084 5.55936 3.2914 7.20009 3.06081C8.84082 2.83022 10.3578 3.97336 10.5884 5.61409L12.153 5.39421L12.5584 11.8413L15.5129 11.1461L16.0199 7.53857L13.6834 6.20036L14.3343 1.56885ZM17.2543 5.94074L18.8232 5.55534L19.0073 4.24525L16.0365 3.82773L15.8524 5.13782L17.2543 5.94074ZM15.956 13.0965L11.8897 14.0533L8.01645 12.2306L5.66244 15H17.9784L15.956 13.0965ZM6.62735 6.17078L8.60788 5.89244C8.53102 5.34553 8.02535 4.96448 7.47844 5.04134C6.93153 5.11821 6.55048 5.62387 6.62735 6.17078Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSandbox;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAyyB,EAAzyB,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mpBAAmpB,KAAK,eAAc,CAAI,EACjzB,EAEc",
  "debugId": "3A2C2816BDBEBCAC64756E2164756E21",
  "names": []
}