{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSushi/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 IconSushi: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSushi\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10 5.1517V18H14V5.1517C13.3589 5.05184 12.6897 5 12 5C11.3103 5 10.6411 5.05184 10 5.1517ZM7 20C4.79086 20 3 18.2091 3 16V15.9984C2.63625 15.984 2.2641 15.8841 1.92484 15.6307C1.53202 15.3373 1.30501 14.9216 1.17631 14.4913C1.04939 14.0669 1 13.5714 1 13.0217C1 8.70496 4.01411 5.71188 8 4.55013V3.52457L8.78023 3.3488C9.80275 3.11844 10.8844 3 12 3C13.1156 3 14.1973 3.11844 15.2198 3.3488L16 3.52457V4.55013C19.9859 5.71188 23 8.70496 23 13.0217C23 13.5714 22.9506 14.0669 22.8237 14.4913C22.695 14.9216 22.468 15.3373 22.0752 15.6307C21.7359 15.8841 21.3638 15.984 21 15.9984V16C21 18.2091 19.2091 20 17 20H7ZM19 15.4867V16C19 17.1046 18.1046 18 17 18H16V14.0857C16.4716 14.2856 16.9285 14.5005 17.3708 14.7139C17.499 14.7757 17.6277 14.8384 17.7563 14.901C18.1793 15.1069 18.6011 15.3123 19 15.4867ZM8 14.0857C7.52844 14.2856 7.07146 14.5005 6.62922 14.7139C6.50102 14.7757 6.3723 14.8384 6.24368 14.901C5.82075 15.1069 5.39885 15.3123 5 15.4867V16C5 17.1046 5.89543 18 7 18H8V14.0857Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSushi;\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,gBAAqnC,EAArnC,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i+BAAi+B,KAAK,eAAc,CAAI,EAC7nC,EAEc",
  "debugId": "0396D6EDB18E501C64756E2164756E21",
  "names": []
}