{
  "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=\"M7.75 4C7.50342 4 7.27258 4.12121 7.13259 4.3242L2.13259 11.5742C1.9558 11.8305 1.9558 12.1695 2.13259 12.4258L7.13259 19.6758C7.27258 19.8788 7.50342 20 7.75 20H21.25C21.6642 20 22 19.6642 22 19.25V4.75C22 4.33579 21.6642 4 21.25 4H7.75ZM10.718 9.46967C11.0109 9.17678 11.4858 9.17678 11.7787 9.46967L13.25 10.941L14.7213 9.46967C15.0142 9.17678 15.4891 9.17678 15.782 9.46967C16.0749 9.76256 16.0749 10.2374 15.782 10.5303L14.3107 12.0017L15.7803 13.4713C16.0732 13.7642 16.0732 14.2391 15.7803 14.532C15.4874 14.8249 15.0126 14.8249 14.7197 14.532L13.25 13.0623L11.7803 14.532C11.4874 14.8249 11.0126 14.8249 10.7197 14.532C10.4268 14.2391 10.4268 13.7642 10.7197 13.4713L12.1893 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,gBAAy4B,EAAz4B,IAAqB,EAAO,UAAU,2CAA0C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ovBAAovB,KAAK,eAAc,CAAI,GAGn4B",
  "debugId": "0973FFBB706A97D264756E2164756E21",
  "names": []
}