import * as React from 'react'; import classnames from 'classnames'; import styles from './ImageCircle.sass'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; import ClippedContent from '../../modules/ClippedContent/ClippedContent'; import { FunctionGeneric } from '../../../common/structures/Generics'; interface IProps extends IReactComponentProps { className?: string; containerClassName?: string; onError?: FunctionGeneric; onLoad?: FunctionGeneric; size?: 'm' | 's' | string; square?: boolean; src: string; tag?: string; } export default class ImageCircle extends React.Component { static defaultProps: Partial = { size: 'm', square: false, tag: 'div', }; render () { return ( ); } }