{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconChevronGrabberVertical/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 IconChevronGrabberVertical: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"chevron-grabber-vertical\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.3536 6.41403C12.1583 6.21876 11.8417 6.21876 11.6464 6.41402L8.53033 9.53014C8.23744 9.82303 7.76256 9.82303 7.46967 9.53014C7.17678 9.23725 7.17678 8.76237 7.46967 8.46948L10.5858 5.35336C11.3668 4.57231 12.6332 4.57232 13.4142 5.35337L16.5303 8.46948C16.8232 8.76237 16.8232 9.23725 16.5303 9.53014C16.2374 9.82303 15.7626 9.82303 15.4697 9.53014L12.3536 6.41403ZM7.46967 14.4695C7.76256 14.1766 8.23744 14.1766 8.53033 14.4695L11.6464 17.5856C11.8417 17.7809 12.1583 17.7809 12.3536 17.5856L15.4697 14.4695C15.7626 14.1766 16.2374 14.1766 16.5303 14.4695C16.8232 14.7624 16.8232 15.2372 16.5303 15.5301L13.4142 18.6463C12.6332 19.4273 11.3668 19.4273 10.5858 18.6463L7.46967 15.5301C7.17678 15.2372 7.17678 14.7624 7.46967 14.4695Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconChevronGrabberVertical;\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,EAA6D,CAAC,IAAU,CACnF,OAAO,gBAA22B,EAA32B,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,quBAAquB,KAAK,eAAc,CAAI,GAGr2B",
  "debugId": "379D8C2AFEB7CBA264756E2164756E21",
  "names": []
}