{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconColumnWideRemove/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 IconColumnWideRemove: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconColumnWideRemove\"><Path d=\"M2.5 19.5H2V20H2.5V19.5ZM2.5 4.5V4H2V4.5H2.5ZM12 19.5V20H12.5V19.5H12ZM21.5 4.5H22V4L21.5 4V4.5ZM21 11.5V12H22V11.5H21ZM12 4.5V4V4.5ZM3 19.5V4.5H2V19.5H3ZM12 19H2.5V20H12V19ZM21 4.5V11.5H22V4.5H21ZM2.5 5H12V4H2.5V5ZM12 5L21.5 5V4L12 4V5ZM12.5 19.5V4.5H11.5V19.5H12.5Z\" fill=\"currentColor\"/><Path d=\"M16.8536 14.1464L16.5 13.7929L15.7929 14.5L16.1464 14.8536L16.8536 14.1464ZM21.1464 19.8536L21.5 20.2071L22.2071 19.5L21.8536 19.1464L21.1464 19.8536ZM16.1464 19.1464L15.7929 19.5L16.5 20.2071L16.8536 19.8536L16.1464 19.1464ZM21.8536 14.8536L22.2071 14.5L21.5 13.7929L21.1464 14.1464L21.8536 14.8536ZM16.1464 14.8536L18.6464 17.3536L19.3536 16.6464L16.8536 14.1464L16.1464 14.8536ZM18.6464 17.3536L21.1464 19.8536L21.8536 19.1464L19.3536 16.6464L18.6464 17.3536ZM16.8536 19.8536L19.3536 17.3536L18.6464 16.6464L16.1464 19.1464L16.8536 19.8536ZM19.3536 17.3536L21.8536 14.8536L21.1464 14.1464L18.6464 16.6464L19.3536 17.3536Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconColumnWideRemove;\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,EAAyE,EAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,gBAAyhC,EAAzhC,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,EAAE,8QAA8Q,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mnBAAmnB,KAAK,eAAc,CAAI,EACjiC,EAEc",
  "debugId": "837EA8630DBA041964756E2164756E21",
  "names": []
}