mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
28 lines
532 B
TypeScript
28 lines
532 B
TypeScript
import React from "react";
|
|
import { COLORS, Colors } from "styles/var/colors";
|
|
|
|
interface IPlusProps {
|
|
color?: Colors;
|
|
}
|
|
|
|
const Plus = ({ color = "ui-fleet-black-75" }: IPlusProps) => {
|
|
return (
|
|
<svg
|
|
width="16"
|
|
height="16"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 16 16"
|
|
aria-label="plus"
|
|
>
|
|
<path
|
|
d="M8 3v10M3 8h10"
|
|
stroke={COLORS[color]}
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default Plus;
|