import React from 'react'; import { FormFieldProps } from '../../ElementsFactory'; import { Theme } from '../../styles'; export interface ButtonProps extends React.ButtonHTMLAttributes, FormFieldProps { fullWidth?: boolean; variant?: Theme; transparent?: boolean; isCancel?: boolean; asLink?: boolean; loading?: boolean; iconButton?: boolean; submit?: boolean; testId?: string; formikDisableIfNotDirty?: boolean; }