banner hover

This commit is contained in:
tangly1024.com
2023-07-14 16:44:19 +08:00
parent 6a934462c9
commit 7b526ec6e1
2 changed files with 38 additions and 14 deletions

View File

@@ -80,3 +80,9 @@ export const PlusSmall = ({ className }) => {
<path strokeLinecap="round" strokeLinejoin="round" d="M12 6v12m6-6H6" />
</svg>
}
export const ArrowSmallRight = ({ 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="M4.5 12h15m0 0l-6.75-6.75M19.5 12l-6.75 6.75" />
</svg>
}