portfolio/components/icons/CheckIcon.tsx
Ryan Freeman 66852789c0
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 3m11s
Add copy button to pre components
2025-04-10 22:58:15 +01:00

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>
)
}