{
  "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 3.25C22 2.55964 21.4404 2 20.75 2H9.25C8.55964 2 8 2.55964 8 3.25V8H3.25C2.55964 8 2 8.55964 2 9.25V20.75C2 21.4404 2.55964 22 3.25 22H14.75C15.4404 22 16 21.4404 16 20.75V16H20.75C21.4404 16 22 15.4404 22 14.75V3.25ZM16 14.5H20.5V3.5H9.5V8H14.75C15.4404 8 16 8.55964 16 9.25V14.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,gBAA2b,EAA3b,IAAqB,EAAO,UAAU,iDAAgD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gSAAgS,KAAK,eAAc,CAAI,GAGrb",
  "debugId": "0F8CCF73D627999164756E2164756E21",
  "names": []
}