Files
lucko-paste/src/components/Button.tsx

24 lines
374 B
TypeScript
Raw Normal View History

2022-11-06 22:46:13 +00:00
import styled from 'styled-components';
const Button = styled.div`
cursor: pointer;
height: 100%;
display: flex;
align-items: center;
padding: 0 0.25em;
color: inherit;
text-decoration: none;
:hover {
background: ${props => props.theme.highlight};
}
@media (max-width: 640px) {
span {
display: none;
}
}
`;
export default Button;