mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
# Checklist for submitter If some of the following don't apply, delete the relevant line. - [ ] Manual QA for all new/changed functionality --------- Co-authored-by: Gabriel Hernandez <ghernandez345@gmail.com>
23 lines
579 B
TypeScript
23 lines
579 B
TypeScript
import React from "react";
|
|
import { COLORS, Colors } from "styles/var/colors";
|
|
|
|
interface ICheckProps {
|
|
color?: Colors;
|
|
}
|
|
|
|
const SuccessOutline = ({ color = "status-success" }: ICheckProps) => {
|
|
return (
|
|
<svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<circle cx="8" cy="8" r="7" stroke={COLORS[color]} strokeWidth="2" />
|
|
<path
|
|
d="m5 9 2 2 4-6"
|
|
stroke={COLORS[color]}
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default SuccessOutline;
|