File tree 2 files changed +7
-53
lines changed
src/sider/oversikt/filter
2 files changed +7
-53
lines changed Original file line number Diff line number Diff line change 1
1
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' ;
5
2
import { useFilters } from '@/context/filters/FilterContext' ;
6
3
import { ActionType } from '@/context/filters/filterContextActions' ;
4
+ import { Button } from '@navikt/ds-react' ;
5
+ import { TrashIcon } from '@navikt/aksel-icons' ;
7
6
8
7
const texts = {
9
8
nullstill : 'Nullstill valg' ,
10
9
} ;
11
10
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
-
37
11
export const ClearFiltersButton = ( ) : ReactElement => {
38
12
const { dispatch : dispatchFilterAction } = useFilters ( ) ;
39
13
40
14
return (
41
- < ClearFiltersWrapper
15
+ < Button
16
+ variant = "tertiary"
17
+ size = "small"
18
+ icon = { < TrashIcon title = "a11y-title" fontSize = "1.5rem" /> }
42
19
onClick = { ( ) => {
43
20
dispatchFilterAction ( {
44
21
type : ActionType . ResetFilters ,
45
22
} ) ;
46
23
} }
47
24
>
48
- < SlettIkon fargeKode = { themes . color . navBla } />
49
25
{ texts . nullstill }
50
- </ ClearFiltersWrapper >
26
+ </ Button >
51
27
) ;
52
28
} ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments