diff --git a/packages/dashboard-v2/src/components/HighlightedLink.js b/packages/dashboard-v2/src/components/HighlightedLink.js new file mode 100644 index 00000000..5fa6b079 --- /dev/null +++ b/packages/dashboard-v2/src/components/HighlightedLink.js @@ -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", +})``;