Files
bigcapital/packages/webapp/src/components/Button/ButtonLink.tsx
Ahmed Bouhuolia d9a716a46f wip darkmode
2025-08-04 12:25:27 +02:00

16 lines
274 B
TypeScript

// @ts-nocheck
import styled from 'styled-components';
export const ButtonLink = styled.button`
color: var(--color-primary);
border: 0;
background: transparent;
cursor: pointer;
text-align: inherit;
&:hover,
&:active {
text-decoration: underline;
}
`;