Potion/web/src/components/icons/TimeIconSmall.tsx
Hayden Hargreaves 45a0d0e54c (FEAT): Favorites list completed, roughly.
No functionality still.
2025-11-13 14:22:10 -07:00

10 lines
441 B
TypeScript

export default function TimeIconSmall() {
return <>
<svg className="h-5 text-blue-600" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M12 7V12L14.5 13.5M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z"
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</>;
}