-
+
+
);
@@ -96,13 +98,17 @@ export const PaginationLinksComponent = props => {
to={{ search: stringify(nextSearchParams) }}
title={intl.formatMessage({ id: 'PaginationLinks.next' })}
>
-
+
);
const nextLinkDisabled = (
-
-
+
+
);
diff --git a/src/components/PaginationLinks/PrevPageIcon.js b/src/components/PaginationLinks/PrevPageIcon.js
deleted file mode 100644
index 2bb4f0c0..00000000
--- a/src/components/PaginationLinks/PrevPageIcon.js
+++ /dev/null
@@ -1,33 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-const PrevPageIcon = props => {
- const { className } = props;
-
- return (
-
- );
-};
-
-const { string } = PropTypes;
-
-PrevPageIcon.defaultProps = {
- className: null,
-};
-
-PrevPageIcon.propTypes = {
- className: string,
-};
-
-export default PrevPageIcon;