mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-11 18:45:41 +00:00
14 lines
383 B
TypeScript
14 lines
383 B
TypeScript
|
import {Props} from '@/types'
|
||
|
|
||
|
export function ChevronRightIcon(props: Props) {
|
||
|
return (
|
||
|
<svg viewBox="0 0 16 16" fill="none" aria-hidden="true" {...props}>
|
||
|
<path
|
||
|
d="M6.75 5.75 9.25 8l-2.5 2.25"
|
||
|
strokeWidth="1.5"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
/>
|
||
|
</svg>
|
||
|
)
|
||
|
}
|