{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindow2/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 IconWindow2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"window-2, browser, app, desktop\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.75 4C2.33579 4 2 4.33579 2 4.75V9.5H22V4.75C22 4.33579 21.6642 4 21.25 4H2.75ZM4.75 6C4.33579 6 4 6.33579 4 6.75C4 7.16421 4.33579 7.5 4.75 7.5C5.16421 7.5 5.5 7.16421 5.5 6.75C5.5 6.33579 5.16421 6 4.75 6ZM6.5 6.75C6.5 6.33579 6.83579 6 7.25 6C7.66421 6 8 6.33579 8 6.75C8 7.16421 7.66421 7.5 7.25 7.5C6.83579 7.5 6.5 7.16421 6.5 6.75ZM9.75 6C9.33579 6 9 6.33579 9 6.75C9 7.16421 9.33579 7.5 9.75 7.5C10.1642 7.5 10.5 7.16421 10.5 6.75C10.5 6.33579 10.1642 6 9.75 6Z\" fill=\"currentColor\"/><path d=\"M2 19.25V11H22V19.25C22 19.6642 21.6642 20 21.25 20H2.75C2.33579 20 2 19.6642 2 19.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindow2;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA4tB,EAA5tB,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ydAAyd,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yFAAyF,KAAK,eAAc,CAAI,GAGttB",
  "debugId": "7AA3F0455C3EEAAE64756E2164756E21",
  "names": []
}