Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1311x | export function ModuleMark() {
return (
<div className="flex items-center justify-center w-4 h-4">
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M8 1L15 8L8 15L1 8L8 1Z" />
</svg>
</div>
);
}
|