{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShaka1/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 IconShaka1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconShaka1\"><Path d=\"M16.2328 12.9868L19.9161 9.28794C20.5072 8.69426 21.4657 8.69426 22.0569 9.28794C22.6369 9.8705 22.6503 10.8091 22.0805 11.4017C20.7832 12.751 18.5012 15.0915 16.761 16.6998C15.8948 17.5003 14.8381 18.4196 13.8157 19.288C11.649 21.1287 8.42468 20.8313 6.56598 18.6775L4.21597 15.9545C3.44617 15.0625 2.99464 13.9381 2.93286 12.7593L2.5 4.5H3.08141C4.3338 4.5 5.46873 5.24069 5.97737 6.39L7.25366 9.27385L8.83821 7.68257M8.83821 7.68257L9.89474 6.62161C10.4782 6.03572 11.4241 6.03572 12.0075 6.62161C12.5909 7.20751 12.5909 8.15743 12.0075 8.74332L10.9511 9.80418C10.3677 10.3901 9.42179 10.3901 8.83837 9.80418C8.25496 9.21828 8.2548 8.26846 8.83821 7.68257ZM13.592 11.3955L14.6484 10.3346C15.2318 9.74871 15.2318 8.79879 14.6484 8.21289C14.065 7.627 13.1191 7.627 12.5357 8.2129L11.4793 9.27375C10.8959 9.85964 10.8959 10.8096 11.4793 11.3955C12.0627 11.9814 13.0086 11.9814 13.592 11.3955ZM13.592 11.3955L15.1766 9.80418C15.76 9.21828 16.7059 9.21828 17.2893 9.80418C17.8727 10.3901 17.8727 11.34 17.2893 11.9259L15.7048 13.5172C15.1214 14.1031 14.1754 14.1031 13.592 13.5172C13.0086 12.9313 13.0086 11.9814 13.592 11.3955Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconShaka1;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAmvC,EAAnvC,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,ymCAAymC,OAAO,eAAe,cAAc,SAAQ,CAAI,EAC3vC,EAEc",
  "debugId": "53DBE59A3BF82A6B64756E2164756E21",
  "names": []
}