{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCmdBox/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 IconCmdBox: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconCmdBox\"><Path d=\"M20.5 3.5H21V3H20.5V3.5ZM20.5 20.5V21H21V20.5H20.5ZM3.5 20.5H3V21H3.5V20.5ZM3.5 3.5V3H3V3.5H3.5ZM10.5 9.9375V8.25H9.5V9.9375H10.5ZM8.21875 10.4375H10V9.4375H8.21875V10.4375ZM14.5 9.9375V8.25H13.5V9.9375H14.5ZM15.7812 9.4375H14V10.4375H15.7812V9.4375ZM10 10.4375H14V9.4375H10V10.4375ZM14 13.5H10V14.5H14V13.5ZM10.5 14V9.9375H9.5V14H10.5ZM13.5 9.9375V14H14.5V9.9375H13.5ZM14.5 15.75V14H13.5V15.75H14.5ZM10.5 15.75V14H9.5V15.75H10.5ZM10 13.5H8.25V14.5H10V13.5ZM14 14.5H15.75V13.5H14V14.5ZM7 15.75C7 15.0596 7.55964 14.5 8.25 14.5V13.5C7.00736 13.5 6 14.5074 6 15.75H7ZM18 15.75C18 14.5074 16.9926 13.5 15.75 13.5V14.5C16.4404 14.5 17 15.0596 17 15.75H18ZM13.5 15.75C13.5 16.9926 14.5074 18 15.75 18V17C15.0596 17 14.5 16.4404 14.5 15.75H13.5ZM17 8.21875C17 8.89185 16.4543 9.4375 15.7812 9.4375V10.4375C17.0066 10.4375 18 9.44413 18 8.21875H17ZM14.5 8.25C14.5 7.56546 15.0696 7 15.7658 7V6C14.529 6 13.5 7.00155 13.5 8.25H14.5ZM8.25 18C9.49264 18 10.5 16.9926 10.5 15.75H9.5C9.5 16.4404 8.94036 17 8.25 17V18ZM6 8.21875C6 9.44413 6.99337 10.4375 8.21875 10.4375V9.4375C7.54565 9.4375 7 8.89185 7 8.21875H6ZM8.25 17C7.55964 17 7 16.4404 7 15.75H6C6 16.9926 7.00736 18 8.25 18V17ZM8.23423 6C7.0147 6 6 6.98756 6 8.21875H7C7 7.55147 7.55529 7 8.23423 7V6ZM15.7658 7C16.4447 7 17 7.55147 17 8.21875H18C18 6.98756 16.9853 6 15.7658 6V7ZM17 15.75C17 16.4404 16.4404 17 15.75 17V18C16.9926 18 18 16.9926 18 15.75H17ZM10.5 8.25C10.5 7.00155 9.47103 6 8.23423 6V7C8.93044 7 9.5 7.56546 9.5 8.25H10.5ZM20 3.5V20.5H21V3.5H20ZM20.5 20H3.5V21H20.5V20ZM4 20.5V3.5H3V20.5H4ZM3.5 4H20.5V3H3.5V4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCmdBox;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA4pD,EAA5pD,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,2iDAA2iD,KAAK,eAAc,CAAI,EACpqD,EAEc",
  "debugId": "8DD6465798B33F4A64756E2164756E21",
  "names": []
}