import type { ButtonHTMLAttributes } from 'vue'; import type { HeroIcon } from '../../types/heroicons'; export interface TButtonProps extends ButtonHTMLAttributes { variant?: 'primary' | 'secondary' | 'tertiary'; size?: 'large' | 'medium' | 'small'; leftIcon?: HeroIcon; rightIcon?: HeroIcon; content?: string; fullWidth?: boolean; loading?: boolean; color?: 'primary' | 'error' | 'success' | 'warning' | 'in-process' | 'in-process-dark' | 'info'; } //# sourceMappingURL=TButton.types.d.ts.map