mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
16 lines
261 B
TypeScript
16 lines
261 B
TypeScript
// @ts-nocheck
|
|
import styled from 'styled-components';
|
|
|
|
export const ButtonLink = styled.button`
|
|
color: #0052cc;
|
|
border: 0;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
text-align: inherit;
|
|
|
|
&:hover,
|
|
&:active {
|
|
text-decoration: underline;
|
|
}
|
|
`;
|