/* @flow */ 'use strict'; import React from 'react'; export default (props: { size: string, label?: string }): React$Element => { const style = { width: `${props.size}px`, height: `${props.size}px`, } return (

{ props.label }

); }