mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
26 lines
520 B
TypeScript
26 lines
520 B
TypeScript
import React from "react";
|
|
import { COLORS, Colors } from "styles/var/colors";
|
|
|
|
interface IRefresh {
|
|
color?: Colors;
|
|
}
|
|
const Run = ({ color = "ui-fleet-black-75" }: IRefresh) => {
|
|
return (
|
|
<svg
|
|
width="12"
|
|
height="13"
|
|
viewBox="0 0 12 13"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M1 11.5L1 1.5L11 6.83333L1 11.5Z"
|
|
stroke={COLORS[color]}
|
|
strokeWidth="2"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default Run;
|