A UI component library telling you not to reinvent the wheel by reinventing the wheel.
@matuzo If you wanted to style a link like a button, say a "View" link that takes you elsewhere, this could be a decent approach, no? Whereas actual buttons (the kind that trigger an action _on the page_, or submit a form) might not need these classes (or maybe in your app they do, to keep things consistent). Like "View," "Edit," "Delete" "buttons" that you may want to style similarly (and where Edit and Delete trigger a POST/PATCH/PUT/DELETE request rather than a GET request)?
@janboddez the link in the example has no href which means that's is a "placeholder link". That's an inaccessible anti pattern often used instead of the more accessible <button>.
@matuzo Thanx for the explanation.
I had the same question as @janboddez, as there's nothing wrong with visually styling links like some kind of buttons ("call to action" links) but I didn't notice there was no href. This is a major failure.