{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSquareArrowTopRight2/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 IconSquareArrowTopRight2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"square-arrow-top-right-2, open, new, link, open link, box, arrow\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.57378 3.25C5.5825 3.25 5.59124 3.25 5.6 3.25H9.5C9.91422 3.25 10.25 3.58579 10.25 4C10.25 4.41422 9.91422 4.75 9.5 4.75H5.6C5.3076 4.75 5.13341 4.75059 5.00428 4.76114C4.92547 4.76757 4.89234 4.77607 4.88346 4.77883C4.83883 4.80235 4.80235 4.83883 4.77883 4.88347C4.77607 4.89234 4.76757 4.92547 4.76114 5.00428C4.75059 5.13341 4.75 5.3076 4.75 5.6V18.9C4.75 19.1924 4.75059 19.3666 4.76114 19.4957C4.76757 19.5745 4.77607 19.6077 4.77883 19.6165C4.80235 19.6612 4.83883 19.6977 4.88346 19.7212C4.89234 19.7239 4.92546 19.7324 5.00428 19.7389C5.13341 19.7494 5.3076 19.75 5.6 19.75H18.9C19.1924 19.75 19.3666 19.7494 19.4957 19.7389C19.5745 19.7324 19.6077 19.7239 19.6165 19.7212C19.6612 19.6977 19.6977 19.6612 19.7212 19.6165C19.7239 19.6077 19.7324 19.5745 19.7389 19.4957C19.7494 19.3666 19.75 19.1924 19.75 18.9V15C19.75 14.5858 20.0858 14.25 20.5 14.25C20.9142 14.25 21.25 14.5858 21.25 15V18.9262C21.25 19.1837 21.25 19.4202 21.2339 19.6179C21.2165 19.831 21.1766 20.0642 21.0593 20.2945C20.8915 20.6238 20.6238 20.8915 20.2945 21.0593C20.0642 21.1766 19.831 21.2165 19.6179 21.2339C19.4202 21.25 19.1837 21.25 18.9262 21.25H5.57377C5.31629 21.25 5.07981 21.25 4.88213 21.2339C4.669 21.2165 4.43583 21.1766 4.20552 21.0593C3.87624 20.8915 3.60852 20.6238 3.44074 20.2945C3.32339 20.0642 3.28353 19.831 3.26612 19.6179C3.24997 19.4202 3.24998 19.1837 3.25 18.9262L3.25 5.6C3.25 5.59124 3.25 5.5825 3.25 5.57379C3.24998 5.3163 3.24997 5.07982 3.26612 4.88213C3.28353 4.669 3.32339 4.43583 3.44074 4.20552C3.60852 3.87624 3.87624 3.60852 4.20552 3.44074C4.43583 3.32339 4.669 3.28353 4.88213 3.26612C5.07982 3.24997 5.3163 3.24998 5.57378 3.25ZM19.6191 19.7203L19.6176 19.7208L19.6191 19.7203ZM4.88088 19.7203L4.88236 19.7208L4.88088 19.7203ZM4.77973 19.6191L4.77918 19.6176L4.77973 19.6191ZM4.77973 4.88088L4.77917 4.88239L4.77973 4.88088ZM4.88239 4.77917L4.88088 4.77973L4.88239 4.77917ZM13.25 4C13.25 3.58579 13.5858 3.25 14 3.25H20.5C20.9142 3.25 21.25 3.58579 21.25 4V10.5C21.25 10.9142 20.9142 11.25 20.5 11.25C20.0858 11.25 19.75 10.9142 19.75 10.5V5.81066L11.7803 13.7803C11.4874 14.0732 11.0126 14.0732 10.7197 13.7803C10.4268 13.4874 10.4268 13.0126 10.7197 12.7197L18.6893 4.75H14C13.5858 4.75 13.25 4.41422 13.25 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSquareArrowTopRight2;\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,EAA2D,CAAC,IAAU,CACjF,OAAO,gBAA42E,EAA52E,IAAqB,EAAO,UAAU,oEAAmE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8rEAA8rE,KAAK,eAAc,CAAI,GAGt2E",
  "debugId": "529515E4730765A664756E2164756E21",
  "names": []
}