@sky-mavis/tanto-widget
Version:
Tanto Widget
15 lines • 475 B
JavaScript
import {jsx}from'@emotion/react/jsx-runtime';const SmallTransparentWC = props => {
return jsx("svg", {
width: "16",
height: "11",
viewBox: "0 0 16 11",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: 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"
})
});
};export{SmallTransparentWC};