@sky-mavis/tanto-widget
Version:
Tanto Widget
22 lines (18 loc) • 548 B
JavaScript
;
var jsxRuntime = require('@emotion/react/jsx-runtime');
const SmallTransparentWC = props => {
return jsxRuntime.jsx("svg", {
width: "16",
height: "11",
viewBox: "0 0 16 11",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: jsxRuntime.jsx("path", {
d: "M3.286 3.286C4.439 1.876 6.06 1 7.857 1s3.419.877 4.572 2.286M1 5.571 4.54 9l3.317-3 3.318 3 3.54-3.429",
stroke: "#4598FE",
strokeWidth: "1.5"
})
});
};
exports.SmallTransparentWC = SmallTransparentWC;