@sky-mavis/tanto-widget
Version:
Tanto Widget
14 lines • 912 B
JavaScript
import {jsx}from'@emotion/react/jsx-runtime';function XIcon(props) {
return jsx("svg", {
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: jsx("path", {
d: "M15.4698 3.46984C15.7627 3.17695 16.2375 3.17695 16.5304 3.46984C16.8233 3.76274 16.8233 4.2375 16.5304 4.53039L11.0607 10.0001L16.5304 15.4698C16.8233 15.7627 16.8233 16.2375 16.5304 16.5304C16.2375 16.8233 15.7627 16.8233 15.4698 16.5304L10.0001 11.0607L4.53039 16.5304L4.47375 16.5821C4.17917 16.8225 3.74445 16.805 3.46984 16.5304C3.19524 16.2558 3.17778 15.8211 3.41809 15.5265L3.46984 15.4698L8.93957 10.0001L3.46984 4.53039L3.41809 4.47375C3.17778 4.17917 3.19524 3.74445 3.46984 3.46984C3.74445 3.19524 4.17917 3.17778 4.47375 3.41809L4.53039 3.46984L10.0001 8.93957L15.4698 3.46984Z",
fill: "currentColor"
})
});
}export{XIcon};