Skip to content

Commit cda232a

Browse files
author
Jonas Gossens
committed
💄 Change default remove icon from fa-trashAlt to fa-minus
1 parent b525f81 commit cda232a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/react-chayns-amountcontrol/component/AmountControl.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { PureComponent } from 'react';
22
import PropTypes from 'prop-types';
33
import classNames from 'classnames';
4-
import { faTrashAlt } from '@fortawesome/free-regular-svg-icons/faTrashAlt';
4+
// import { faTrashAlt } from '@fortawesome/free-regular-svg-icons/faTrashAlt';
55
import { faMinus } from '@fortawesome/free-solid-svg-icons/faMinus';
66
import { faPlus } from '@fortawesome/free-solid-svg-icons/faPlus';
77

@@ -61,7 +61,7 @@ export default class AmountControl extends PureComponent {
6161
stopPropagation: false,
6262
plusIcon: faPlus,
6363
minusIcon: faMinus,
64-
removeIcon: faTrashAlt,
64+
removeIcon: faMinus,
6565
};
6666

6767
constructor(props) {

0 commit comments

Comments
 (0)