import * as _ from 'lodash'; import * as React from 'react'; import {colors} from 'material-ui/styles'; import {utils} from 'ts/utils/utils'; import {Element as ScrollElement} from 'react-scroll'; import {Styles, ProfileInfo} from 'ts/types'; const IMAGE_DIMENSION = 149; const styles: Styles = { subheader: { textTransform: 'uppercase', fontSize: 32, margin: 0, }, imageContainer: { width: IMAGE_DIMENSION, height: IMAGE_DIMENSION, boxShadow: 'rgba(0, 0, 0, 0.19) 2px 5px 10px', }, }; interface ProfileProps { colSize: number; profileInfo: ProfileInfo; } export function Profile(props: ProfileProps) { return (