mirror of
https://github.com/outline/outline.git
synced 2025-12-20 18:19:43 -06:00
* Add error state for failed list loading * Move sidebar collections to PaginatedList for improved error handling, loading, retrying etc
15 lines
275 B
TypeScript
15 lines
275 B
TypeScript
import styled from "styled-components";
|
|
|
|
const ButtonLink = styled.button`
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
color: ${(props) => props.theme.link};
|
|
line-height: inherit;
|
|
background: none;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
`;
|
|
|
|
export default ButtonLink;
|