reactioning
Version:
Just a simple library to show beautiful reactions in your app.
23 lines (22 loc) • 743 B
JavaScript
import { jsx as o } from "react/jsx-runtime";
const r = ({ width: a = 24, height: l = 24, ...t }) => /* @__PURE__ */ o(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
id: "thumbs-down",
width: a,
height: l,
...t,
children: /* @__PURE__ */ o(
"path",
{
fill: "#535353",
d: "M19,2H6.27A3,3,0,0,0,3.32,4.46l-1.27,7A3,3,0,0,0,5,15H9.56L9,16.43A4.13,4.13,0,0,0,12.89,22a1,1,0,0,0,.91-.59L16.65,15H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM15,13.79l-2.72,6.12a2.13,2.13,0,0,1-1.38-2.78l.53-1.43A2,2,0,0,0,9.56,13H5a1,1,0,0,1-.77-.36A1,1,0,0,1,4,11.82l1.27-7a1,1,0,0,1,1-.82H15ZM20,12a1,1,0,0,1-1,1H17V4h2a1,1,0,0,1,1,1Z"
}
)
}
);
export {
r as ThumbDownIcon
};