fleet/frontend/components/icons/CalendarCheck.tsx
Marko Lisica 8162d052bf
Icons improvements (making frontend consistent with Figma component library) (#14185)
# 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>
2023-10-31 16:06:38 +00:00

22 lines
1.1 KiB
TypeScript

import React from "react";
const CalendarCheck = () => {
return (
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M4 0.0500031C4.41421 0.0500031 4.75 0.385789 4.75 0.800003V2H11.25V0.800006C11.25 0.385793 11.5858 0.0500062 12 0.0500062C12.4142 0.0500062 12.75 0.385793 12.75 0.800006V2H14C15.1046 2 16 2.89543 16 4V14C16 15.1046 15.1046 16 14 16H2C0.895431 16 0 15.1046 0 14V4C0 2.89543 0.895431 2 2 2H3.25V0.800003C3.25 0.385789 3.58579 0.0500031 4 0.0500031ZM14 5.25V4L2 4V5.25H14ZM2 6.75V14H14V6.75H2ZM10.9865 7.92919C11.3017 8.19787 11.3395 8.67124 11.0708 8.98649L8.07081 12.5065C7.93465 12.6663 7.73775 12.7616 7.52797 12.7695C7.31819 12.7773 7.11474 12.6969 6.96704 12.5477L4.96704 10.5277C4.67561 10.2333 4.67797 9.75847 4.97231 9.46704C5.26666 9.17561 5.74153 9.17797 6.03296 9.47231L7.45866 10.9123L9.92919 8.01351C10.1979 7.69826 10.6712 7.66051 10.9865 7.92919Z"
fill="#515774"
/>
</svg>
);
};
export default CalendarCheck;