{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSquareArrowCenter/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 IconSquareArrowCenter: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"square-arrow-center, resize big, box, arrow\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.32379 3C5.3325 3 5.34124 3 5.35 3L18.6762 3C18.9337 2.99998 19.1702 2.99997 19.3679 3.01612C19.581 3.03353 19.8142 3.07339 20.0445 3.19074C20.3738 3.35852 20.6415 3.62624 20.8093 3.95552C20.9266 4.18583 20.9665 4.419 20.9839 4.63213C21 4.82981 21 5.06629 21 5.32377V13.25C21 13.6642 20.6642 14 20.25 14C19.8358 14 19.5 13.6642 19.5 13.25V5.35C19.5 5.0576 19.4994 4.88341 19.4889 4.75428C19.4824 4.67547 19.4739 4.64234 19.4712 4.63347C19.4477 4.58883 19.4112 4.55235 19.3665 4.52883C19.3577 4.52607 19.3245 4.51758 19.2457 4.51114C19.1166 4.50059 18.9424 4.5 18.65 4.5L5.35 4.5C5.0576 4.5 4.88341 4.50059 4.75428 4.51114C4.67547 4.51757 4.64234 4.52607 4.63347 4.52883C4.58882 4.55235 4.55235 4.58883 4.52883 4.63346C4.52607 4.64234 4.51758 4.67547 4.51114 4.75428C4.50059 4.88341 4.5 5.0576 4.5 5.35L4.5 18.65C4.5 18.9424 4.50059 19.1166 4.51114 19.2457C4.51757 19.3245 4.52607 19.3577 4.52883 19.3665C4.55235 19.4112 4.58883 19.4477 4.63347 19.4712C4.64235 19.4739 4.67547 19.4824 4.75428 19.4889C4.8834 19.4994 5.0576 19.5 5.35 19.5H13.25C13.6642 19.5 14 19.8358 14 20.25C14 20.6642 13.6642 21 13.25 21H5.32377C5.06629 21 4.82981 21 4.63213 20.9839C4.419 20.9665 4.18583 20.9266 3.95552 20.8093C3.62624 20.6415 3.35852 20.3738 3.19074 20.0445C3.07339 19.8142 3.03353 19.581 3.01612 19.3679C2.99997 19.1702 2.99998 18.9337 3 18.6762L3 5.35C3 5.34124 3 5.3325 3 5.32379C2.99998 5.0663 2.99997 4.82982 3.01612 4.63213C3.03353 4.419 3.07339 4.18583 3.19074 3.95552C3.35852 3.62624 3.62624 3.35852 3.95552 3.19074C4.18583 3.07339 4.419 3.03353 4.63213 3.01612C4.82982 2.99997 5.0663 2.99998 5.32379 3ZM4.63088 19.4703L4.63236 19.4708L4.63088 19.4703ZM4.52973 19.3691L4.52918 19.3676L4.52973 19.3691ZM4.52973 4.63088L4.52917 4.63239L4.52973 4.63088ZM4.63239 4.52917L4.63088 4.52973L4.63239 4.52917ZM19.3691 4.52973L19.3676 4.52918L19.3691 4.52973ZM19.4703 4.63088L19.4708 4.63237L19.4703 4.63088ZM9.21967 9.21967C9.36033 9.07902 9.55109 9 9.75 9L15.25 9C15.6642 9 16 9.33579 16 9.75C16 10.1642 15.6642 10.5 15.25 10.5L11.5607 10.5L18.5303 17.4697C18.8232 17.7626 18.8232 18.2374 18.5303 18.5303C18.2374 18.8232 17.7626 18.8232 17.4697 18.5303L10.5 11.5607V15.25C10.5 15.6642 10.1642 16 9.75 16C9.33579 16 9 15.6642 9 15.25V9.75C9 9.55109 9.07902 9.36032 9.21967 9.21967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSquareArrowCenter;\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,EAAwD,CAAC,IAAU,CAC9E,OAAO,gBAA03E,EAA13E,IAAqB,EAAO,UAAU,+CAA8C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iuEAAiuE,KAAK,eAAc,CAAI,GAGp3E",
  "debugId": "49A364E2D261FBAE64756E2164756E21",
  "names": []
}