Skip to content

Commit 16c728e

Browse files
jasmussenjasmussent-hamano
authored
Fix density slider minus to be correct. (#64185)
Co-authored-by: jasmussen <joen@git.wordpress.org> Co-authored-by: t-hamano <wildworks@git.wordpress.org>
1 parent 324628c commit 16c728e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/dataviews/src/layouts/grid/density-picker.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import { RangeControl, Button } from '@wordpress/components';
55
import { __ } from '@wordpress/i18n';
66
import { useViewportMatch } from '@wordpress/compose';
7-
import { plus, lineSolid } from '@wordpress/icons';
7+
import { plus, reset } from '@wordpress/icons';
88
import { useEffect } from '@wordpress/element';
99

1010
const viewportBreaks = {
@@ -90,7 +90,7 @@ export default function DensityPicker( {
9090
<>
9191
<Button
9292
size="compact"
93-
icon={ lineSolid }
93+
icon={ reset }
9494
disabled={ rangeValue <= 0 }
9595
accessibleWhenDisabled
9696
label={ __( 'Decrease size' ) }

0 commit comments

Comments
 (0)