import { PrimaryButton } from "@fluentui/react"; import React, { CSSProperties } from "react"; export interface PanelFooterProps { buttonLabel: string; isButtonDisabled?: boolean; style?: CSSProperties; } export const PanelFooterComponent: React.FunctionComponent = ({ buttonLabel, isButtonDisabled, style, }: PanelFooterProps): JSX.Element => (
);