mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-04-19 12:24:46 +00:00
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 3m11s
10 lines
363 B
TypeScript
10 lines
363 B
TypeScript
import {Props} from '@/types'
|
|
|
|
export function CheckIcon(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="m4.5 12.75 6 6 9-13.5"/>
|
|
</svg>
|
|
)
|
|
} |