Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
652 Bytes
import React from 'react';
const Heart = ({ fill }) => {
return (
<svg
fill={fill}
xmlns='http://www.w3.org/2000/svg'
width='24'
height='24'
viewBox='0 0 24 24'
role='img'
aria-hidden='true'
className='crayons-icon'
>
<title>Heart</title>
<path d='M21.179 12.794l.013.014L12 22l-9.192-9.192.013-.014A6.5 6.5 0 0112 3.64a6.5 6.5 0 019.179 9.154zM4.575 5.383a4.5 4.5 0 000 6.364L12 19.172l7.425-7.425a4.5 4.5 0 10-6.364-6.364L8.818 9.626 7.404 8.21l3.162-3.162a4.5 4.5 0 00-5.99.334l-.001.001z'></path>
</svg>
);
};
export default Heart;