theme-heo-nav-progress

This commit is contained in:
tangly1024.com
2023-07-17 19:01:20 +08:00
parent f4d54c83f5
commit 4b3fbba087
4 changed files with 52 additions and 1 deletions

View File

@@ -86,3 +86,9 @@ export const ArrowSmallRight = ({ className }) => {
<path strokeLinecap="round" strokeLinejoin="round" d="M4.5 12h15m0 0l-6.75-6.75M19.5 12l-6.75 6.75" />
</svg>
}
export const ArrowSmallUp = ({ className }) => {
return <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" className={className}>
<path strokeLinecap="round" strokeLinejoin="round" d="M12 19.5v-15m0 0l-6.75 6.75M12 4.5l6.75 6.75" />
</svg>
}