mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import styled from 'styled-components';
|
|
|
|
const StyledLink = styled.a`
|
|
font-size: ${props => props.theme.fontSize}px;
|
|
color: ${props => props.theme.urlColor};
|
|
font-family: ${props => props.theme.fontFamily};
|
|
`;
|
|
|
|
export default StyledLink;
|