{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSquareBehindSquare2/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSquareBehindSquare2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"square-behind-square-2, copy 2, layers, pages\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M22 5C22 3.34315 20.6569 2 19 2H11C9.34315 2 8 3.34315 8 5V8H5C3.34315 8 2 9.34315 2 11V19C2 20.6569 3.34315 22 5 22H13C14.6569 22 16 20.6569 16 19V16H19C20.6569 16 22 14.6569 22 13V5ZM16 14.5H19C19.8284 14.5 20.5 13.8284 20.5 13V5C20.5 4.17157 19.8284 3.5 19 3.5H11C10.1716 3.5 9.5 4.17157 9.5 5V8H13C14.6569 8 16 9.34315 16 11V14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSquareBehindSquare2;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA0D,CAAC,IAAU,CAChF,OAAO,gBAA4e,EAA5e,IAAqB,EAAO,UAAU,iDAAgD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iVAAiV,KAAK,eAAc,CAAI,GAGte",
  "debugId": "5031D76072F10B6D64756E2164756E21",
  "names": []
}