Skip to content

Commit 67e132d

Browse files
committed
Merge branch 'develop' into chore/split-test-runners
2 parents 74a3d64 + b05d1b1 commit 67e132d

35 files changed

+1384
-582
lines changed

client/common/icons.jsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33
import styled from 'styled-components';
4-
import { remSize, prop } from '../theme';
4+
import { prop } from '../theme';
55
import SortArrowUp from '../images/sort-arrow-up.svg';
66
import SortArrowDown from '../images/sort-arrow-down.svg';
77
import Github from '../images/github.svg';
@@ -10,6 +10,8 @@ import Plus from '../images/plus-icon.svg';
1010
import Close from '../images/close.svg';
1111
import Exit from '../images/exit.svg';
1212
import DropdownArrow from '../images/down-filled-triangle.svg';
13+
import Preferences from '../images/preferences.svg';
14+
import Play from '../images/triangle-arrow-right.svg';
1315

1416
// HOC that adds the right web accessibility props
1517
// https://www.scottohara.me/blog/2019/05/22/contextual-images-svgs-and-a11y.html
@@ -70,3 +72,5 @@ export const PlusIcon = withLabel(Plus);
7072
export const CloseIcon = withLabel(Close);
7173
export const ExitIcon = withLabel(Exit);
7274
export const DropdownArrowIcon = withLabel(DropdownArrow);
75+
export const PreferencesIcon = withLabel(Preferences);
76+
export const PlayIcon = withLabel(Play);

0 commit comments

Comments
 (0)