{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowLeftX/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 IconArrowLeftX: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-left-x, delete, remove, backspace\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M9.32532 4C8.0924 4 6.93824 4.60604 6.23827 5.621L3.30724 9.871C2.4233 11.1527 2.4233 12.8473 3.30724 14.129L6.23827 18.379C6.93824 19.394 8.0924 20 9.32532 20H18.25C20.3211 20 22 18.3211 22 16.25V7.75C22 5.67893 20.3211 4 18.25 4H9.32532ZM10.718 9.46967C11.0109 9.17678 11.4858 9.17678 11.7787 9.46967L13.25 10.941L14.7214 9.46967C15.0143 9.17678 15.4891 9.17678 15.782 9.46967C16.0749 9.76256 16.0749 10.2374 15.782 10.5303L14.3107 12.0017L15.7804 13.4713C16.0733 13.7642 16.0733 14.2391 15.7804 14.532C15.4875 14.8249 15.0126 14.8249 14.7197 14.532L13.25 13.0623L11.7804 14.532C11.4875 14.8249 11.0126 14.8249 10.7197 14.532C10.4268 14.2391 10.4268 13.7642 10.7197 13.4713L12.1894 12.0017L10.718 10.5303C10.4251 10.2374 10.4251 9.76256 10.718 9.46967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowLeftX;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAA04B,EAA14B,IAAqB,EAAO,UAAU,2CAA0C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qvBAAqvB,KAAK,eAAc,CAAI,GAGp4B",
  "debugId": "265B681182E2A86B64756E2164756E21",
  "names": []
}