portfolio/components/icons/CloseIcon.tsx

16 lines
444 B
TypeScript
Raw Normal View History

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