-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into mw-grid-fix-visible-range-with-row-start
- Loading branch information
Showing
5 changed files
with
35 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { SVGAttributes } from "react"; | ||
|
||
const HttpMonitoring = (props: SVGAttributes<SVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={24} | ||
height={24} | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
{...props} | ||
> | ||
<path d="M6 10H7.85L10.018 14L13.982 6L16.15 10H18" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/> | ||
<path d="M3 15V5C3 3.895 3.895 3 5 3H19C20.105 3 21 3.895 21 5V15" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/> | ||
<path d="M3 21.8002V18.2002" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/> | ||
<path d="M5.87988 18.2002V21.8002" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/> | ||
<path d="M5.88 20H3" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/> | ||
<path d="M10.92 18.2002H8.04004" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/> | ||
<path d="M9.48047 18.2002V21.8002" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/> | ||
<path d="M18.1201 18.2002V21.8002" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/> | ||
<path d="M15.9601 18.2002H13.0801" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/> | ||
<path d="M14.5195 18.2002V21.8002" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/> | ||
<path d="M18.1201 18.2002H19.8751C20.4961 18.2002 21.0001 18.7042 21.0001 19.3252V19.3252C21.0001 19.9462 20.4961 20.4502 19.8751 20.4502H18.1201" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/> | ||
</svg> | ||
); | ||
|
||
export default HttpMonitoring; |