strapi-plugin-content-manager
Version:
A powerful UI to easily manage your data.
29 lines (25 loc) • 445 B
JavaScript
import styled from 'styled-components';
import { Link } from 'react-router-dom';
const StyledLink = styled(Link)`
display: block;
width: 100%;
text-decoration: none;
color: #333740;
font-size: 13px;
svg {
margin-right: 10px;
vertical-align: middle;
}
&:hover {
text-decoration: none;
span {
color: #007eff;
}
svg {
g {
fill: #007eff;
}
}
}
`;
export default StyledLink;