forked from
leaflet.pub/leaflet
fork
Configure Feed
Select the types of activity you want to include in your feed.
a tool for shared writing and social publishing
fork
Configure Feed
Select the types of activity you want to include in your feed.
1import { Props } from "./Props";
2
3export const CheckTiny = (props: Props) => {
4 return (
5 <svg
6 width="16"
7 height="16"
8 viewBox="0 0 16 16"
9 fill="none"
10 xmlns="http://www.w3.org/2000/svg"
11 {...props}
12 >
13 <path
14 fillRule="evenodd"
15 clipRule="evenodd"
16 d="M14.7921 2.03304C15.3262 2.4705 15.4045 3.25808 14.967 3.79213L6.7757 13.7921C6.55723 14.0588 6.2383 14.2235 5.89434 14.2471C5.55039 14.2707 5.21195 14.1512 4.95907 13.9169L1.15037 10.3874C0.644007 9.91821 0.613911 9.12732 1.08315 8.62096C1.55239 8.11459 2.34327 8.0845 2.84964 8.55374L5.68371 11.18L13.033 2.20794C13.4705 1.67388 14.258 1.59558 14.7921 2.03304Z"
17 fill="currentColor"
18 />
19 </svg>
20 );
21};