mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-13 17:25:41 +00:00
16 lines
444 B
TypeScript
16 lines
444 B
TypeScript
import {Props} from '@/types'
|
|
|
|
export function CloseIcon(props: Props) {
|
|
return (
|
|
<svg viewBox="0 0 24 24" aria-hidden="true" {...props}>
|
|
<path
|
|
d="m17.25 6.75-10.5 10.5M6.75 6.75l10.5 10.5"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
)
|
|
} |