feat(dashboard-v2): add a HighlightedLink component

This commit is contained in:
Michał Leszczyk 2022-03-23 11:31:21 +01:00
parent 7dea4674f6
commit a5a6757bf1
No known key found for this signature in database
GPG Key ID: FA123CA8BAA2FBF4
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import { Link } from "gatsby";
import styled from "styled-components";
export default styled(Link).attrs({
className: "text-primary underline-offset-3 decoration-dotted hover:text-primary-light hover:underline",
})``;