1
1
import React from 'react' ;
2
2
import PropTypes from 'prop-types' ;
3
3
import styled from 'styled-components' ;
4
- import { remSize , prop } from '../theme' ;
4
+ import { prop } from '../theme' ;
5
5
import SortArrowUp from '../images/sort-arrow-up.svg' ;
6
6
import SortArrowDown from '../images/sort-arrow-down.svg' ;
7
7
import Github from '../images/github.svg' ;
@@ -10,6 +10,8 @@ import Plus from '../images/plus-icon.svg';
10
10
import Close from '../images/close.svg' ;
11
11
import Exit from '../images/exit.svg' ;
12
12
import DropdownArrow from '../images/down-filled-triangle.svg' ;
13
+ import Preferences from '../images/preferences.svg' ;
14
+ import Play from '../images/triangle-arrow-right.svg' ;
13
15
14
16
// HOC that adds the right web accessibility props
15
17
// https://www.scottohara.me/blog/2019/05/22/contextual-images-svgs-and-a11y.html
@@ -70,3 +72,5 @@ export const PlusIcon = withLabel(Plus);
70
72
export const CloseIcon = withLabel ( Close ) ;
71
73
export const ExitIcon = withLabel ( Exit ) ;
72
74
export const DropdownArrowIcon = withLabel ( DropdownArrow ) ;
75
+ export const PreferencesIcon = withLabel ( Preferences ) ;
76
+ export const PlayIcon = withLabel ( Play ) ;
0 commit comments