import * as React from 'react'; import styled from 'styled-components'; import { colors } from '../../config.json'; import ImageView from './ImageView'; const Container = styled.div({ display: 'flex', alignItems: 'center', }); const Caption = styled.span((props: { open: boolean }) => ({ fontFamily: 'Open Sans', fontSize: '15px', fontWeight: 600, lineHeight: '20px', color: props.open ? colors.white : colors.white40, [Container + ':hover &']: { color: colors.white, }, })); const Chevron = styled(ImageView)({ [Container + ':hover &']: { backgroundColor: colors.white, }, }); interface IProps { pointsUp: boolean; onToggle?: () => void; children: React.ReactText; className?: string; } export default function ConnectionPanelDisclosure(props: IProps) { return ( {props.children} ); }