{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconColumnWideAdd/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 IconColumnWideAdd: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconColumnWideAdd\"><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.5ZM12.5 4.75V4.25H11.5V4.75H12.5ZM3 19.5V4.5H2V19.5H3ZM12 19H2.5V20H12V19ZM21 4.5V11.5H22V4.5H21ZM2.5 5H12V4H2.5V5ZM12 5L21.5 5V4L12 4V5ZM12.5 19.5V4.75H11.5V19.5H12.5Z\" fill=\"currentColor\"/><Path d=\"M20 14.5V14H19V14.5H20ZM19 20.5V21H20V20.5H19ZM16.5 17H16V18H16.5V17ZM22.5 18H23V17H22.5V18ZM19 14.5V17.5H20V14.5H19ZM19 17.5V20.5H20V17.5H19ZM16.5 18H19.5V17H16.5V18ZM19.5 18H22.5V17H19.5V18Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconColumnWideAdd;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAsoB,EAAtoB,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,EAAE,8SAA8S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mMAAmM,KAAK,eAAc,CAAI,EAC9oB,EAEc",
  "debugId": "CB94C0AF7B2D350164756E2164756E21",
  "names": []
}