{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSquareBehindSquare1/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 IconSquareBehindSquare1: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"square-behind-square-1, copy 1, layers, pages\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 3.25C2 2.55964 2.55964 2 3.25 2H14.75C15.4404 2 16 2.55964 16 3.25V8H20.75C21.4404 8 22 8.55964 22 9.25V20.75C22 21.4404 21.4404 22 20.75 22H9.25C8.55964 22 8 21.4404 8 20.75V16H3.25C2.55964 16 2 15.4404 2 14.75V3.25ZM14.5 8H9.25C8.55964 8 8 8.55964 8 9.25V14.5H3.5V3.5H14.5V8Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSquareBehindSquare1;\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,gBAAsb,EAAtb,IAAqB,EAAO,UAAU,iDAAgD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2RAA2R,KAAK,eAAc,CAAI,GAGhb",
  "debugId": "B0C2E98904C19A9A64756E2164756E21",
  "names": []
}