jackmerrill.com/components/Images/HeartIcon.tsx
2021-04-13 21:39:58 -05:00

7 lines
391 B
TypeScript

const HeartIcon = (props: any) => (
<svg xmlns="http://www.w3.org/2000/svg" {...props} fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>
)
export default HeartIcon;