aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/FontIconBox/ButtonInterface.ts
blob: 0aa2ac8e113917b40a568fe8c33d2e238ed7e1bf (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;
    rootDoc: Doc;
    label: any;
    icon: IconProp;
    color: string;
    backgroundColor: string;
}