@ant-design/icons#HeartFilled JavaScript Examples

The following examples show how to use @ant-design/icons#HeartFilled. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PageFooter.js    From Cowin-Notification-System with MIT License 6 votes vote down vote up
PageFooter = () => {
  return (
    <div className='f12'>
    <div >Made with <HeartFilled /></div>
    <div>
        By - 
        <a href='https://www.linkedin.com/in/abizer-lokhandwala/' target="_blank" rel="noopener noreferrer"> Abizer Lokhandwala</a>,
        <a href='https://github.com/shloksingh10' target="_blank" rel="noopener noreferrer"> Shlok Singh</a>,
        <a href='https://arpitmathur.info' target="_blank" rel="noopener noreferrer"> Arpit Mathur</a>,
        <a href='https://github.com/Guzzler' target="_blank" rel="noopener noreferrer"> Sharang Pai</a>,
        <a href='https://www.linkedin.com/in/pujan-parikh-818234165/' target="_blank" rel="noopener noreferrer"> Pujan Parikh</a>
    </div> 
    <div>
        Contribute here -
        <a href='https://github.com/Guzzler/Cowin-Notification-System' target="_blank" rel="noopener noreferrer"> Frontend</a>,
        <a href='https://github.com/abizerlokhandwala/Cowin-Notification-Service' target="_blank" rel="noopener noreferrer"> Backend</a>,
        <a href='https://vaccinepost.co.in/privacy' target="_blank" rel="noopener noreferrer"> Privacy Policy</a>,
        <a href='https://forms.gle/84sihsmbxUyqwv1E9' target="_blank" rel="noopener noreferrer"> Contact Us</a>
    </div>
    </div>
  )
}