import { style, classes, keyframes } from 'typestyle'; import * as React from 'react'; import { verticallySpaced, horizontallySpaced } from 'csstips'; export const buttonClass = style({ fontFamily: 'helvetica', cursor: 'pointer', height: 'auto', padding: "12px 30px 11px", border: `1px solid #333`, borderRadius: '3px', color: `white`, backgroundColor: '#333', fontSize: '15px', textDecoration: "none", lineHeight: "1em", outline: 'none', transition: 'color .2s, background-color .2s', display: 'inline-block', $nest: { '&:hover': { backgroundColor: '#666', }, '&:active': { backgroundColor: '#666', }, '&:focus': { outline: 'thin dotted', outlineColor: `#333` } } }); export const Button = (props: React.HTMLProps) =>