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