{
  "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.4695 7.46967C14.7624 7.17678 15.2372 7.17678 15.5301 7.46967L18.6463 10.5858C19.4273 11.3668 19.4273 12.6332 18.6463 13.4142L15.5301 16.5303C15.2372 16.8232 14.7624 16.8232 14.4695 16.5303C14.1766 16.2374 14.1766 15.7626 14.4695 15.4697L17.5856 12.3536C17.7809 12.1583 17.7809 11.8417 17.5856 11.6464L14.4695 8.53033C14.1766 8.23744 14.1766 7.76256 14.4695 7.46967ZM9.53014 7.46967C9.82304 7.76256 9.82304 8.23744 9.53014 8.53033L6.41403 11.6464C6.21876 11.8417 6.21876 12.1583 6.41402 12.3536L9.53014 15.4697C9.82303 15.7626 9.82303 16.2374 9.53014 16.5303C9.23725 16.8232 8.76237 16.8232 8.46948 16.5303L5.35336 13.4142C4.57231 12.6332 4.57232 11.3668 5.35337 10.5858L8.46948 7.46967C8.76238 7.17678 9.23725 7.17678 9.53014 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,gBAA62B,EAA72B,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,quBAAquB,KAAK,eAAc,CAAI,GAGv2B",
  "debugId": "E71F6891F7DB51F564756E2164756E21",
  "names": []
}