Files
2022-08-17 11:50:49 +05:30

17 lines
274 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