{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPageCross/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 IconPageCross: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"page-cross, close, x, document, list, file\"><path d=\"M4 5.75C4 3.67893 5.67893 2 7.75 2H16.25C18.3211 2 20 3.67893 20 5.75V14.5535C19.7382 14.6632 19.493 14.8247 19.2799 15.0378L18.7496 15.5681L18.2193 15.0378C17.3406 14.1591 15.916 14.1591 15.0373 15.0378C14.1586 15.9164 14.1586 17.3411 15.0373 18.2197L15.5676 18.7501L15.0373 19.2804C14.3001 20.0176 14.1814 21.1391 14.6812 22H7.75C5.67893 22 4 20.3211 4 18.25V5.75Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.4016 16.0983C21.6945 16.3912 21.6945 16.8661 21.4016 17.159L19.8107 18.75L21.4016 20.341C21.6945 20.6339 21.6945 21.1088 21.4016 21.4017C21.1088 21.6945 20.6339 21.6945 20.341 21.4016L18.75 19.8107L17.159 21.4016C16.8661 21.6945 16.3912 21.6945 16.0983 21.4016C15.8055 21.1088 15.8055 20.6339 16.0983 20.341L17.6893 18.75L16.0983 17.159C15.8055 16.8661 15.8055 16.3912 16.0983 16.0983C16.3912 15.8055 16.8661 15.8055 17.159 16.0983L18.75 17.6893L20.341 16.0983C20.6339 15.8055 21.1088 15.8055 21.4016 16.0983Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPageCross;\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,gBAA0iC,EAA1iC,IAAqB,EAAO,UAAU,8CAA6C,gBAAC,OAAD,CAAM,EAAE,iXAAiX,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ogBAAogB,KAAK,eAAc,CAAI,GAGpiC",
  "debugId": "8C1DF0CB662BFDF364756E2164756E21",
  "names": []
}