| 12345678910111213141516171819202122 |
- import React from "react";
- function Stop() {
- return (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- width="48"
- height="48"
- fill="none"
- stroke="#5c666b"
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth="2"
- viewBox="0 0 24 24"
- >
- <circle cx="12" cy="12" r="10"></circle>
- <path d="M4.93 4.93L19.07 19.07"></path>
- </svg>
- );
- }
- export default React.memo(Stop);
|