diff --git a/frontend/assets/icons/outlined/sequence-outlined.svg.tsx b/frontend/assets/icons/outlined/sequence-outlined.svg.tsx index 11ec79da01..04950f64a6 100644 --- a/frontend/assets/icons/outlined/sequence-outlined.svg.tsx +++ b/frontend/assets/icons/outlined/sequence-outlined.svg.tsx @@ -19,20 +19,8 @@ type IProps = { }; export default ({ className }: IProps) => ( - - - - - - - - - - - + + + ); diff --git a/frontend/assets/icons/outlined/sequence_calendar-outlined.svg.tsx b/frontend/assets/icons/outlined/sequence_calendar-outlined.svg.tsx deleted file mode 100644 index 04950f64a6..0000000000 --- a/frontend/assets/icons/outlined/sequence_calendar-outlined.svg.tsx +++ /dev/null @@ -1,26 +0,0 @@ -/** - * Copyright (C) 2022 3D Repo Ltd - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ -type IProps = { - className?: string, -}; - -export default ({ className }: IProps) => ( - - - - -); diff --git a/frontend/src/v4/constants/viewerGui.ts b/frontend/src/v4/constants/viewerGui.ts index b38ce1e448..fd0889b335 100644 --- a/frontend/src/v4/constants/viewerGui.ts +++ b/frontend/src/v4/constants/viewerGui.ts @@ -20,7 +20,7 @@ import CompareIcon from '@assets/icons/outlined/compare-outlined.svg'; import TreeIcon from '@assets/icons/outlined/tree-outlined.svg'; import GroupsIcon from '@assets/icons/outlined/groups-outlined.svg'; import GisIcon from '@assets/icons/outlined/layers-outlined.svg'; -import SequencesIcon from '@assets/icons/outlined/sequence_calendar-outlined.svg'; +import SequencesIcon from '@assets/icons/outlined/sequence-outlined.svg'; import ViewsIcon from '@assets/icons/outlined/view-outlined.svg'; import IssuesIcon from '@assets/icons/outlined/issue-outlined.svg'; import MeasureIcon from '@assets/icons/outlined/measure-outlined.svg'; diff --git a/frontend/src/v4/routes/components/sequencingDates/sequencingDates.component.tsx b/frontend/src/v4/routes/components/sequencingDates/sequencingDates.component.tsx index e79deaa36d..bcd19c7ae5 100644 --- a/frontend/src/v4/routes/components/sequencingDates/sequencingDates.component.tsx +++ b/frontend/src/v4/routes/components/sequencingDates/sequencingDates.component.tsx @@ -17,7 +17,7 @@ import { PureComponent, useState } from 'react'; import InputLabel from '@mui/material/InputLabel'; import CloseIcon from '@mui/icons-material/Close'; -import SequencesIcon from '@assets/icons/outlined/sequence_calendar-outlined.svg'; +import SequencesIcon from '@assets/icons/outlined/sequence-outlined.svg'; import { Field } from 'formik'; import { connect } from 'react-redux'; import { withRouter } from 'react-router-dom'; diff --git a/frontend/src/v4/routes/viewerGui/components/activities/activities.component.tsx b/frontend/src/v4/routes/viewerGui/components/activities/activities.component.tsx index a0008541d5..4ec1d2ae84 100644 --- a/frontend/src/v4/routes/viewerGui/components/activities/activities.component.tsx +++ b/frontend/src/v4/routes/viewerGui/components/activities/activities.component.tsx @@ -19,7 +19,7 @@ import { debounce } from 'lodash'; import IconButton from '@mui/material/IconButton'; import ArrowBack from '@mui/icons-material/ArrowBack'; -import ActivitiesIcon from '@assets/icons/outlined/sequence_calendar-outlined.svg'; +import ActivitiesIcon from '@assets/icons/outlined/sequence-outlined.svg'; import { isEqual } from 'lodash'; import { renderWhenTrue, renderWhenTrueOtherwise } from '../../../../helpers/rendering';