{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSankeyAxis/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 IconSankeyAxis: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSankeyAxis\"><Path d=\"M5 19H21V21H3V3H5V19Z\" fill=\"currentColor\"/><Path d=\"M20 7H19C16.8246 7 15.3944 8.2187 13.6621 9.74902C13.5838 9.81821 13.5036 9.88668 13.4238 9.95703C13.5379 10.0905 13.6517 10.2218 13.7627 10.3525C13.9254 10.5442 14.0861 10.7315 14.2441 10.915C15.5119 9.85648 17.0312 9 19 9H20V11H19C17.6809 11 16.6351 11.5391 15.6094 12.3838C15.8276 12.591 16.0486 12.7842 16.2754 12.9609C17.1169 13.6168 17.9816 14 19 14H20V16H19C17.4146 16 16.1288 15.383 15.0459 14.5391C14.7355 14.2971 14.4388 14.0314 14.1514 13.7539C14.0091 13.8984 13.8642 14.0454 13.7178 14.1963C12.0768 15.8876 10.0927 18 7 18H6V16H7C9.11546 16 10.5273 14.6124 12.2822 12.8037C12.446 12.635 12.6128 12.4617 12.7842 12.2871C12.5979 12.0714 12.4155 11.8573 12.2373 11.6475C12.1178 11.5067 11.9987 11.3689 11.8818 11.2324C10.5789 12.2004 9.02905 13 7 13H6V11H7C8.38752 11 9.4705 10.5023 10.5234 9.74609C10.2617 9.4897 9.99778 9.25198 9.72461 9.03906C8.88311 8.3832 8.01839 8 7 8H6V6H7C8.58544 6 9.87124 6.61703 10.9541 7.46094C11.3488 7.7686 11.7237 8.1125 12.082 8.47363C12.1662 8.39972 12.2524 8.32652 12.3379 8.25098C14.0014 6.7814 15.9673 5 19 5H20V7Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSankeyAxis;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA+sC,EAA/sC,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,wBAAwB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uiCAAuiC,KAAK,eAAc,CAAI,EACvtC,EAEc",
  "debugId": "18A312245843644864756E2164756E21",
  "names": []
}