diff --git a/types/hig__button/hig__button-tests.tsx b/types/hig__button/hig__button-tests.tsx new file mode 100644 index 0000000000..2b4adb5da0 --- /dev/null +++ b/types/hig__button/hig__button-tests.tsx @@ -0,0 +1,61 @@ +import * as React from 'react'; +import Button, { targets, types, widths, AvailableTargets, AvailableTypes, AvailableWidths } from '@hig/button'; + +/** Button */ +const emptyFunc = () => {}; +const disabled = true; +const icon =
; +const link = ''; +const onClick = emptyFunc; +const onBlur = emptyFunc; +const onFocus = emptyFunc; +const onHover = emptyFunc; +const onMouseDown = emptyFunc; +const onMouseEnter = emptyFunc; +const onMouseLeave = emptyFunc; +const onMouseUp = emptyFunc; +const stylesheet = emptyFunc; +const target = targets.BLANK; +const title = ''; +const type = types.FLAT; +const width = widths.GROW; + +// Minimal props +