So much progress! Yay!! Whats missing is the global storage of the filters. That is the final touch for searching.
10 lines
438 B
TypeScript
10 lines
438 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" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"></path>
|
|
</svg>
|
|
</>;
|
|
}
|