{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconChevronGrabberHorizontal/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 IconChevronGrabberHorizontal: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"chevron-grabber-horizontal\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.4696 7.46967C14.7624 7.17678 15.2373 7.17678 15.5302 7.46967L18.9999 10.9393C19.5857 11.5251 19.5857 12.4749 18.9999 13.0607L15.5302 16.5303C15.2373 16.8232 14.7624 16.8232 14.4696 16.5303C14.1767 16.2374 14.1767 15.7626 14.4696 15.4697L17.9392 12L14.4696 8.53033C14.1767 8.23744 14.1767 7.76256 14.4696 7.46967ZM9.53022 7.46967C9.82311 7.76256 9.82311 8.23744 9.53022 8.53033L6.06055 12L9.53022 15.4697C9.82311 15.7626 9.82311 16.2374 9.53022 16.5303C9.23732 16.8232 8.76245 16.8232 8.46956 16.5303L4.99989 13.0607C4.4141 12.4749 4.4141 11.5251 4.99989 10.9393L5.53022 11.4697L4.99989 10.9393L8.46956 7.46967C8.76245 7.17678 9.23732 7.17678 9.53022 7.46967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconChevronGrabberHorizontal;\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+D,CAAC,IAAU,CACrF,OAAO,gBAAiyB,EAAjyB,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ypBAAypB,KAAK,eAAc,CAAI,GAG3xB",
  "debugId": "F781B5802297DCD464756E2164756E21",
  "names": []
}