blob: 6e16fdf6dbd48094930926e3bf37b038b921ed5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
import * as React from 'react';
import styled from 'styled-components';
import { colors } from '../../config.json';
import { Icon } from './cell/Label';
interface IProps extends React.HTMLAttributes<HTMLButtonElement> {
up: boolean;
}
const Button = styled.button({
border: 'none',
background: 'none',
});
const StyledIcon = styled(Icon)({
flex: 0,
alignSelf: 'stretch',
justifyContent: 'center',
});
export default function ChevronButton(props: IProps) {
const { up, ...otherProps } = props;
return (
<Button {...otherProps}>
<StyledIcon
tintColor={colors.white80}
tintHoverColor={colors.white}
source={up ? 'icon-chevron-up' : 'icon-chevron-down'}
height={24}
width={24}
/>
</Button>
);
}
|