blob: 1e62ebbc08254259b64303838f4e83a48ce52401 (
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
|
import * as React from 'react';
import styled from 'styled-components';
import { colors } from '../../config.json';
import * as Cell from './cell';
interface IProps extends React.HTMLAttributes<HTMLButtonElement> {
up: boolean;
}
const Button = styled.button({
border: 'none',
background: 'none',
});
const Icon = styled(Cell.Icon)({
flex: 0,
alignSelf: 'stretch',
justifyContent: 'center',
});
export default function ChevronButton(props: IProps) {
const { up, ...otherProps } = props;
return (
<Button {...otherProps}>
<Icon
tintColor={colors.white80}
tintHoverColor={colors.white}
source={up ? 'icon-chevron-up' : 'icon-chevron-down'}
height={24}
width={24}
/>
</Button>
);
}
|