Hashtag is used to display home, project and other forms of IDs. They can be used as a link.
import React from 'react' import { Hashtag } from '../../' const HashtagDefault = (props) => { return ( <div> <Hashtag text="470297" type="project" url="https://google.com" {...props} /> <br /> <br /> <Hashtag text="123456" type="home" url="https://google.com" {...props} /> <br /> <br /> <Hashtag text="456789" type="appointment" url="https://google.com" {...props} /> <br /> <br /> <Hashtag text="654321" type="default" url="https://google.com" {...props} /> </div> ) } export default HashtagDefault
Do not use as a button.