{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBackward/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 IconBackward: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"backward, delete, remove, key\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6.559 4C5.95368 4 5.39135 4.31282 5.07213 4.82712L1.19282 11.0771C0.841978 11.6424 0.841978 12.3576 1.19282 12.9229L5.07213 19.1729C5.39135 19.6872 5.95368 20 6.559 20H20.2527C21.2192 20 22.0027 19.2165 22.0027 18.25V5.75C22.0027 4.7835 21.2192 4 20.2527 4H6.559ZM11.0323 9.21967C10.7394 8.92678 10.2645 8.92678 9.97162 9.21967C9.67873 9.51256 9.67873 9.98744 9.97162 10.2803L11.6913 12L9.97162 13.7197C9.67873 14.0126 9.67873 14.4874 9.97162 14.7803C10.2645 15.0732 10.7394 15.0732 11.0323 14.7803L12.752 13.0607L14.4716 14.7803C14.7645 15.0732 15.2394 15.0732 15.5323 14.7803C15.8252 14.4874 15.8252 14.0126 15.5323 13.7197L13.8126 12L15.5323 10.2803C15.8252 9.98744 15.8252 9.51256 15.5323 9.21967C15.2394 8.92678 14.7645 8.92678 14.4716 9.21967L12.752 10.9393L11.0323 9.21967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBackward;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAA25B,EAA35B,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gxBAAgxB,KAAK,eAAc,CAAI,GAGr5B",
  "debugId": "B30DEB255A6F12F664756E2164756E21",
  "names": []
}