{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconImages4/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 IconImages4: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconImages4\"><Path d=\"M2.25 19.5L1.83626 19.2192L1.30647 20H2.25V19.5ZM7 12.5L7.29062 12.0931L6.87385 11.7954L6.58626 12.2192L7 12.5ZM10.5 15L10.2094 15.4069L10.6147 15.6964L10.9058 15.2922L10.5 15ZM15 8.75L15.4234 8.48412L15.0284 7.8549L14.5942 8.45785L15 8.75ZM21.75 19.5V20H22.6543L22.1734 19.2341L21.75 19.5ZM2.66374 19.7808L7.41374 12.7808L6.58626 12.2192L1.83626 19.2192L2.66374 19.7808ZM6.70938 12.9069L10.2094 15.4069L10.7906 14.5931L7.29062 12.0931L6.70938 12.9069ZM10.9058 15.2922L15.4058 9.04215L14.5942 8.45785L10.0942 14.7078L10.9058 15.2922ZM14.5766 9.01588L21.3266 19.7659L22.1734 19.2341L15.4234 8.48412L14.5766 9.01588ZM2.25 20H21.75V19H2.25V20ZM11.25 6.25C11.25 7.49264 10.2426 8.5 9 8.5V9.5C10.7949 9.5 12.25 8.04493 12.25 6.25H11.25ZM9 8.5C7.75736 8.5 6.75 7.49264 6.75 6.25H5.75C5.75 8.04493 7.20507 9.5 9 9.5V8.5ZM6.75 6.25C6.75 5.00736 7.75736 4 9 4V3C7.20507 3 5.75 4.45507 5.75 6.25H6.75ZM9 4C10.2426 4 11.25 5.00736 11.25 6.25H12.25C12.25 4.45507 10.7949 3 9 3V4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconImages4;\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,gBAA4jC,EAA5jC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,08BAA08B,KAAK,eAAc,CAAI,EACpkC,EAEc",
  "debugId": "796F5D91F0510ECF64756E2164756E21",
  "names": []
}