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

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