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; }