{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShaders/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 IconShaders: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconShaders\"><Path d=\"M3 17.8926C3.68544 17.593 4.41243 17.4109 5.19727 17.5449C5.4381 17.5861 5.75702 17.7628 6.19727 18.208C6.63336 18.6491 7.06863 19.2256 7.58984 19.9043C7.85458 20.249 8.14304 20.6242 8.45996 21H3V17.8926Z\" fill=\"currentColor\"/><Path d=\"M10.918 3C10.8389 4.90907 11.2311 6.32003 12.0518 7.38574C12.9949 8.61036 14.3787 9.20143 15.6035 9.66992C16.9035 10.1672 18.0634 10.5436 19.0645 11.2646C19.8534 11.833 20.5487 12.6294 21 13.9297V21H19.1953C19.0052 19.7746 18.6307 18.8103 18.0859 18.041C17.4945 17.2057 16.7534 16.6669 15.999 16.2686C15.2755 15.8866 14.4662 15.6012 13.8057 15.3379C13.1083 15.0599 12.5013 14.782 11.9756 14.3867C11.2553 13.845 10.7126 13.1921 10.168 12.5098C9.6612 11.8749 9.07624 11.1022 8.35156 10.6035C7.53281 10.0401 6.56518 9.83084 5.375 10.1504C4.66649 10.3406 3.88619 10.7166 3 11.29V3H10.918Z\" fill=\"currentColor\"/><Path d=\"M5.89355 12.082C6.52752 11.9118 6.88966 12.0262 7.21777 12.252C7.63982 12.5425 8.01858 13.0238 8.60449 13.7578C9.15263 14.4445 9.83183 15.2762 10.7734 15.9844C11.5203 16.546 12.3319 16.9033 13.0645 17.1953C13.8337 17.502 14.4668 17.722 15.0654 18.0381C15.6334 18.338 16.0956 18.6901 16.4541 19.1963C16.7503 19.6146 17.0056 20.1843 17.166 21H11.2979C10.5707 20.4538 9.90156 19.6304 9.17676 18.6865C8.68967 18.0522 8.16547 17.3544 7.62012 16.8027C7.07906 16.2555 6.39297 15.72 5.5332 15.5732C4.59329 15.4129 3.73819 15.5329 3 15.7588V13.7393C4.32379 12.7338 5.2411 12.2572 5.89355 12.082Z\" fill=\"currentColor\"/><Path d=\"M21 10.2754C20.7558 10.044 20.4998 9.83349 20.2334 9.6416C18.9637 8.72705 17.4748 8.24446 16.3174 7.80176C15.0849 7.33032 14.2013 6.89948 13.6357 6.16504C13.1771 5.56926 12.8367 4.64055 12.9189 3H21V10.2754Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconShaders;\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,gBAAgwD,EAAhwD,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,+MAA+M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2kBAA2kB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6kBAA6kB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,CAAI,EACxwD,EAEc",
  "debugId": "F96B1528F07B923564756E2164756E21",
  "names": []
}