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 { 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 ( ); }