mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-02 12:52:37 +00:00
15 lines
269 B
JavaScript
15 lines
269 B
JavaScript
import React from 'react';
|
|
import styled from 'styled-components';
|
|
import colors from '~/js/config/colors';
|
|
|
|
const StyledLink = styled.a`
|
|
color: red;
|
|
text-decoration
|
|
`;
|
|
|
|
const Link = ({ href, name }) => (
|
|
<Link href={href} />
|
|
);
|
|
|
|
export default StyledLink;
|