mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
15 lines
No EOL
439 B
JavaScript
15 lines
No EOL
439 B
JavaScript
import React from 'react';
|
|
export function ResetIcon() {
|
|
return /*#__PURE__*/React.createElement("svg", {
|
|
width: "20",
|
|
height: "20",
|
|
viewBox: "0 0 20 20"
|
|
}, /*#__PURE__*/React.createElement("path", {
|
|
d: "M10 10l5.09-5.09L10 10l5.09 5.09L10 10zm0 0L4.91 4.91 10 10l-5.09 5.09L10 10z",
|
|
stroke: "currentColor",
|
|
fill: "none",
|
|
fillRule: "evenodd",
|
|
strokeLinecap: "round",
|
|
strokeLinejoin: "round"
|
|
}));
|
|
} |