17 lines
277 B
TypeScript
17 lines
277 B
TypeScript
import { styled } from "../stitches.config";
|
|
|
|
const StyledLink = styled("a", {
|
|
color: "CurrentColor",
|
|
textDecoration: "underline",
|
|
cursor: 'pointer',
|
|
variants: {
|
|
highlighted: {
|
|
true: {
|
|
color: '$blue9'
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
export default StyledLink;
|