Files
xrpl-hooks-ide/components/Link.tsx
2022-03-04 15:13:56 +05:30

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;