Files
bigcapital/packages/webapp/src/components/Button/ButtonLink.tsx
2023-02-03 01:02:31 +02:00

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;
}
`;