{
  "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=\"M21.25 14.25H16.25V3.75H21.25V14.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M11.587 21.1915L12.0582 21.25C13.5 16.5 16.25 15.5366 16.25 12.7163V6.05504C16.25 5.25261 15.7858 4.51099 15.0271 4.23642C12.4523 3.30469 9.75909 3.10538 7.03639 3.33986C5.37371 3.48306 4.07077 4.75909 3.70442 6.37718L2.82727 10.2514C2.38907 12.1869 3.87013 14.0267 5.86638 14.0267H10.4815L9.49609 17.2092C8.92665 19.0484 9.6657 20.9528 11.587 21.1915Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></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,gBAAwiB,EAAxiB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,uCAAuC,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,mWAAmW,OAAO,eAAe,YAAY,MAAK,CAAI,GAGliB",
  "debugId": "7FC63A20EC581C1464756E2164756E21",
  "names": []
}