@ant-design/icons#HeartTwoTone JavaScript Examples

The following examples show how to use @ant-design/icons#HeartTwoTone. 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: Footer.js    From Insta-Poll with MIT License 6 votes vote down vote up
Footer = () => {
    return (

             <footer>
      <div className="footer">
        Made with  <HeartTwoTone twoToneColor="#eb2f96" /> By <a href="https://github.com/mihir0699">Mihir Gupta</a>
       
      </div>
   
    </footer>
    )
}
Example #2
Source File: two-tone.jsx    From virtuoso-design-system with MIT License 5 votes vote down vote up
storiesOf('antd/Icon', module).add('two-tone', () => 
  <div className="icons-list">
    <SmileTwoTone />
    <HeartTwoTone twoToneColor="#eb2f96" />
    <CheckCircleTwoTone twoToneColor="#52c41a" />
  </div>,
  { docs: { page: () => (<><h1 id="enus">en-US</h1>
<p>You can set <code>twoToneColor</code> prop to specific primary color for two-tone icons.</p></>) } });