{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCheeseburger/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 IconCheeseburger: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCheeseburger\"><Path d=\"M6.08892 4.86669C8.09973 4.21897 10.4602 4 12 4C13.5398 4 15.9003 4.21897 17.9111 4.86669C18.9138 5.18967 19.9017 5.64179 20.6564 6.28456C21.4307 6.94413 22 7.84629 22 9V10H2V9C2 7.84629 2.56929 6.94413 3.34365 6.28456C4.09829 5.64179 5.08623 5.18967 6.08892 4.86669Z\" fill=\"currentColor\"/><Path d=\"M4.88462 13.5481C5.59846 13.2506 6.40154 13.2506 7.11539 13.5481C8.32154 14.0506 9.67846 14.0506 10.8846 13.5481C11.5985 13.2506 12.4015 13.2506 13.1154 13.5481C14.3215 14.0506 15.6785 14.0506 16.8846 13.5481C17.5985 13.2506 18.4015 13.2506 19.1154 13.5481C19.7183 13.7993 20.3589 13.9249 20.9994 13.925L21.9994 13.9251L21.9996 11.9251L20.9996 11.925C20.6205 11.925 20.2414 11.8506 19.8846 11.7019C18.6785 11.1994 17.3215 11.1994 16.1154 11.7019C15.4015 11.9994 14.5985 11.9994 13.8846 11.7019C12.6785 11.1994 11.3215 11.1994 10.1154 11.7019C9.40154 11.9994 8.59846 11.9994 7.88462 11.7019C6.67846 11.1994 5.32154 11.1994 4.11539 11.7019C3.75845 11.8506 3.37928 11.925 3 11.925H2V13.925H3C3.64072 13.925 4.28155 13.7994 4.88462 13.5481Z\" fill=\"currentColor\"/><Path d=\"M18.032 20C18.4706 20 18.8491 20 19.1624 19.9787C19.4922 19.9561 19.8221 19.9066 20.1481 19.7716C20.8831 19.4672 21.4672 18.8831 21.7716 18.1481C21.9066 17.8221 21.9561 17.4922 21.9787 17.1624C22 16.8491 22 16.4706 22 16.032V15H2V16.032C1.99999 16.4706 1.99998 16.8491 2.02135 17.1624C2.04386 17.4922 2.09336 17.8221 2.22836 18.1481C2.53284 18.8831 3.11687 19.4672 3.85195 19.7716C4.17788 19.9066 4.50779 19.9561 4.83762 19.9787C5.15087 20 5.52934 20 5.96798 20H18.032Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCheeseburger;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAwnD,EAAxnD,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,8QAA8Q,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,muBAAmuB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wdAAwd,KAAK,eAAc,CAAI,EAChoD,EAEc",
  "debugId": "630E655A5B5131BD64756E2164756E21",
  "names": []
}