{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBlankPageLandscape/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 IconBlankPageLandscape: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"blank-page-landscape\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 4.75C2 4.33579 2.33579 4 2.75 4H21.25C21.6642 4 22 4.33579 22 4.75V19.25C22 19.6642 21.6642 20 21.25 20H8.03571C7.11036 20 6.21024 19.6988 5.47046 19.1421C3.28523 17.4977 2 14.9176 2 12.1786V4.75ZM8.40278 18.5C7.95491 18.5 7.67294 18.3509 7.47649 18.1446C7.26297 17.9204 7.10109 17.5737 7.02165 17.122C6.85834 16.1935 7.09036 15.104 7.4858 14.5088C7.68314 14.2118 7.64406 13.8169 7.39233 13.5643L6.29151 12.4598C4.50443 10.6667 3.5 8.23412 3.5 5.69717V5.5H20.5V18.5H8.40278Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBlankPageLandscape;\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,EAAyD,CAAC,IAAU,CAC/E,OAAO,gBAAkmB,EAAlmB,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,geAAge,KAAK,eAAc,CAAI,GAG5lB",
  "debugId": "C4121612DA1E64AA64756E2164756E21",
  "names": []
}