{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconThumbDownCurved/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 IconThumbDownCurved: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"thumb-down-curved\"><path d=\"M10.8836 21.9521C11.32 22.0579 11.7513 21.7997 11.9244 21.3854C13.0017 17.5 16.0017 15.445 16.0017 12.7301V6.27476C16.0017 5.12833 15.3381 3.9995 14.1661 3.57273C11.5152 2.60744 9.76815 2.41102 7.04211 2.64726C4.95127 2.82846 3.37955 4.43151 2.94397 6.36742L2.09922 10.1219C1.53654 12.6227 3.43833 14.9999 6.00166 14.9999L9.00166 15C8.53238 17.8157 7.38664 21.1041 10.8836 21.9521Z\" fill=\"currentColor\"/><path d=\"M22.0017 13.5C22.0017 14.0523 21.5539 14.5 21.0017 14.5H18.0017C17.4494 14.5 17.0017 14.0523 17.0017 13.5V4.49997C17.0017 3.94769 17.4494 3.49997 18.0017 3.49997H21.0017C21.5539 3.49997 22.0017 3.94769 22.0017 4.49997V13.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconThumbDownCurved;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAwtB,EAAxtB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,gYAAgY,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kOAAkO,KAAK,eAAc,CAAI,GAGltB",
  "debugId": "C9EABABA151453D264756E2164756E21",
  "names": []
}