mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-04-25 13:54:36 +00:00
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 3m13s
10 lines
388 B
TypeScript
10 lines
388 B
TypeScript
import {Props} from '@/types'
|
|
|
|
export function ArrowLeftIcon(props: Props) {
|
|
return (
|
|
<svg fill="none" strokeWidth={1.5} stroke="currentColor" viewBox="0 0 24 24"
|
|
xmlns="http://www.w3.org/2000/svg" aria-hidden="true" {...props}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M9 15 3 9m0 0 6-6M3 9h12a6 6 0 0 1 0 12h-3"/>
|
|
</svg>
|
|
)
|
|
} |