{
  "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=\"M8.27507 4C7.6997 4 7.1611 4.28282 6.83444 4.75647L2.5241 11.0065C2.1116 11.6046 2.1116 12.3954 2.5241 12.9935L6.83444 19.2435C7.1611 19.7172 7.6997 20 8.27507 20H20.25C21.2165 20 22 19.2165 22 18.25V5.75C22 4.7835 21.2165 4 20.25 4H8.27507ZM10.718 9.46967C11.0109 9.17678 11.4857 9.17678 11.7786 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.3106 12.0017L15.7803 13.4713C16.0732 13.7642 16.0732 14.2391 15.7803 14.532C15.4874 14.8249 15.0125 14.8249 14.7196 14.532L13.25 13.0623L11.7803 14.532C11.4874 14.8249 11.0125 14.8249 10.7196 14.532C10.4267 14.2391 10.4267 13.7642 10.7196 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,gBAA44B,EAA54B,IAAqB,EAAO,UAAU,2CAA0C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uvBAAuvB,KAAK,eAAc,CAAI,GAGt4B",
  "debugId": "D1E12DABF288000564756E2164756E21",
  "names": []
}