{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowApp/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 IconWindowApp: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"window-app, browser, app, desktop\"><path d=\"M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M3 10.75H21\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M5.75 7.125C6.09518 7.125 6.375 7.40482 6.375 7.75C6.375 8.09518 6.09518 8.375 5.75 8.375C5.40482 8.375 5.125 8.09518 5.125 7.75C5.125 7.40482 5.40482 7.125 5.75 7.125Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/><path d=\"M8.25 7.125C8.59518 7.125 8.875 7.40482 8.875 7.75C8.875 8.09518 8.59518 8.375 8.25 8.375C7.90482 8.375 7.625 8.09518 7.625 7.75C7.625 7.40482 7.90482 7.125 8.25 7.125Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/><path d=\"M10.75 7.125C11.0952 7.125 11.375 7.40482 11.375 7.75C11.375 8.09518 11.0952 8.375 10.75 8.375C10.4048 8.375 10.125 8.09518 10.125 7.75C10.125 7.40482 10.4048 7.125 10.75 7.125Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/></CentralIconBase>;\n};\n\nexport default IconWindowApp;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA47B,EAA57B,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,EAAE,oCAAoC,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,2KAA2K,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,EAAE,gBAAC,OAAD,CAAM,EAAE,2KAA2K,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,EAAE,gBAAC,OAAD,CAAM,EAAE,oLAAoL,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,CAAI,GAGt7B",
  "debugId": "BF91BE655173C64C64756E2164756E21",
  "names": []
}