/** * This is the components made by Ed, a former designer for the app (web version) */ /** @jsx jsx */ /** @jsxFrag React.Fragment */ import { jsx } from '@emotion/react'; import { IconName } from '@blueprintjs/core'; import { MGDButtonSize, MGDButtonType } from '../../css/MGDButton'; import React from 'react'; interface OwnProps { type?: MGDButtonType; size?: MGDButtonSize; children?: string; icon?: IconName; rightIcon?: IconName; id?: string; onClick?: (e: React.MouseEvent) => void; disabled?: boolean; onMouseEnter?: (e: React.MouseEvent) => void; onMouseLeave?: (e: React.MouseEvent) => void; className?: string; } declare function MGDButton(props: OwnProps): jsx.JSX.Element; export default MGDButton; //# sourceMappingURL=MGDButton.d.ts.map