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 | import { ReactElement, SVGProps } from "react";
export default function Clock(props: SVGProps<SVGSVGElement>): ReactElement {
return (
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<path
d="M7.999 3H6.999V7V8H7.999H9.999V7H7.999V3ZM7.5 0C3.358 0 0 3.358 0 7.5C0 11.642 3.358 15 7.5 15C11.642 15 15 11.642 15 7.5C15 3.358 11.642 0 7.5 0ZM7.5 14C3.916 14 1 11.084 1 7.5C1 3.916 3.916 1 7.5 1C11.084 1 14 3.916 14 7.5C14 11.084 11.084 14 7.5 14Z"
fill={typeof props.color === "string" ? props.color : "#ffffffb3"}
></path>
</svg>
);
}
|