/**
 *
 * InputLabel renders a form input label.
 *
 *
 * @module inputlabelstyle
 *
 */
import type { BaseStyle } from '@digivue/core/base/style';

export enum InputLabelClasses {
    /**
     * The class of root element
     */
    root = 'd-inputlabel'
}

export interface InputLabelStyle extends BaseStyle {}
