Skip to content

Commit 87a0de0

Browse files
authored
IS-3030: fix uu nullstill button (#573)
1 parent f627d6b commit 87a0de0

File tree

2 files changed

+7
-53
lines changed

2 files changed

+7
-53
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,28 @@
11
import React, { ReactElement } from 'react';
2-
import styled from 'styled-components';
3-
import themes from '@/styles/themes';
4-
import SlettIkon from '@/sider/oversikt/filter/SlettIkon';
52
import { useFilters } from '@/context/filters/FilterContext';
63
import { ActionType } from '@/context/filters/filterContextActions';
4+
import { Button } from '@navikt/ds-react';
5+
import { TrashIcon } from '@navikt/aksel-icons';
76

87
const texts = {
98
nullstill: 'Nullstill valg',
109
};
1110

12-
const ClearFiltersWrapper = styled.div`
13-
display: inline-flex;
14-
align-items: center;
15-
box-sizing: border-box;
16-
justify-content: flex-end;
17-
color: ${themes.color.navBla};
18-
font-size: 1em;
19-
font-weight: 500;
20-
padding: 0.5rem 0.25rem;
21-
-webkit-user-select: none;
22-
user-select: none;
23-
24-
:hover {
25-
cursor: pointer;
26-
}
27-
28-
:active {
29-
border: 2px solid ${themes.color.navBla};
30-
}
31-
32-
> svg {
33-
margin-right: 0.25em;
34-
}
35-
`;
36-
3711
export const ClearFiltersButton = (): ReactElement => {
3812
const { dispatch: dispatchFilterAction } = useFilters();
3913

4014
return (
41-
<ClearFiltersWrapper
15+
<Button
16+
variant="tertiary"
17+
size="small"
18+
icon={<TrashIcon title="a11y-title" fontSize="1.5rem" />}
4219
onClick={() => {
4320
dispatchFilterAction({
4421
type: ActionType.ResetFilters,
4522
});
4623
}}
4724
>
48-
<SlettIkon fargeKode={themes.color.navBla} />
4925
{texts.nullstill}
50-
</ClearFiltersWrapper>
26+
</Button>
5127
);
5228
};

src/sider/oversikt/filter/SlettIkon.tsx

-22
This file was deleted.

0 commit comments

Comments
 (0)