@kelvininc/ui-components
Version:
Kelvin UI Components
10 lines (9 loc) • 352 B
TypeScript
import { EIconName, IButton, IButtonEvents } from '../../types';
export interface IActionButtonTextConfig extends IButton, IButtonEvents {
/** (optional) Button's text */
text?: string;
/** (optional) Button's left icon symbol name */
icon?: EIconName;
/** (optional) Button's right icon symbol name */
rightIcon?: EIconName;
}