aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/FontIconBox/ButtonInterface.ts
blob: 1c034bfbe8601aa38c0439b1b08d3e76861b1a8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { Doc } from '../../../../fields/Doc';
import { IconProp } from '@fortawesome/fontawesome-svg-core';
import { ButtonType } from './FontIconBox';

export interface IButtonProps {
    type: string | ButtonType;
    Document: Doc;
    label: any;
    icon: IconProp;
    color: string;
    backgroundColor: string;
}