{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSteak/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 IconSteak: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSteak\"><Path d=\"M2.05312 8.28008C3.06809 5.44024 5.38992 3.50928 7.97577 3.49408L8.02243 3.71065C9.24135 9.36789 8.04996 15.3378 4.19589 18.4692C3.22695 17.4853 2.4524 16.1224 1.91075 14.3313C1.31802 12.3714 1.36792 10.1972 2.05312 8.28008Z\" fill=\"currentColor\"/><Path d=\"M6.55112 20.0133C6.3084 19.9206 6.07223 19.8145 5.84288 19.6946C7.46493 18.2582 8.62875 16.4267 9.38443 14.3892C11.0671 14.1852 12.6787 14.0229 14.2684 14.4014C15.7478 14.7536 17.2782 15.5965 18.7737 17.5211C16.9262 18.7323 14.7276 19.4902 13.0407 19.9499C10.8834 20.5378 8.5871 20.7903 6.55112 20.0133Z\" fill=\"currentColor\"/><Path d=\"M20.3425 16.2806C21.8175 14.8538 22.8024 12.9297 22.4166 10.4325L22.4087 10.3816L22.3956 10.3317C22.0165 8.88519 21.5217 7.8425 20.8522 7.13015C20.1505 6.38345 19.342 6.08887 18.5446 5.97855C18.0333 5.9078 17.447 5.91011 16.9277 5.91217C16.7275 5.91296 16.5373 5.91371 16.3652 5.91022C15.6789 5.89631 15.028 5.82861 14.3644 5.56892L10.1035 3.91759C10.6179 6.68982 10.6171 9.60901 10.0028 12.3039C11.4628 12.1478 13.0897 12.0649 14.7316 12.4558C16.6883 12.9217 18.594 14.0364 20.3425 16.2806Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSteak;\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,EAA8D,EAAM,KAAK,CAAC,IAAU,CAC/F,OAAO,gBAA2qC,EAA3qC,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,EAAE,mOAAmO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kTAAkT,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8eAA8e,KAAK,eAAc,CAAI,EACnrC,EAEc",
  "debugId": "867684C61DA6E0A864756E2164756E21",
  "names": []
}