{
  "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 4C5.74058 4 5.49958 4.13406 5.36277 4.35448L0.86277 11.6045C0.71241 11.8467 0.71241 12.1533 0.86277 12.3955L5.36277 19.6455C5.49958 19.8659 5.74058 20 6 20H21.25C21.6642 20 22 19.6642 22 19.25V4.75C22 4.33579 21.6642 4 21.25 4H6ZM11.0303 9.21967C10.7374 8.92678 10.2626 8.92678 9.96967 9.21967C9.67678 9.51256 9.67678 9.98744 9.96967 10.2803L11.6893 12L9.96967 13.7197C9.67678 14.0126 9.67678 14.4874 9.96967 14.7803C10.2626 15.0732 10.7374 15.0732 11.0303 14.7803L12.75 13.0607L14.4697 14.7803C14.7626 15.0732 15.2374 15.0732 15.5303 14.7803C15.8232 14.4874 15.8232 14.0126 15.5303 13.7197L13.8107 12L15.5303 10.2803C15.8232 9.98744 15.8232 9.51256 15.5303 9.21967C15.2374 8.92678 14.7626 8.92678 14.4697 9.21967L12.75 10.9393L11.0303 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,gBAAy3B,EAAz3B,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8uBAA8uB,KAAK,eAAc,CAAI,GAGn3B",
  "debugId": "DEB5F8FDA521714964756E2164756E21",
  "names": []
}