import { Button } from '@mui/material'; import type { PConnProps } from '@pega/react-sdk-components/lib/types/PConnProps'; import './ActionButtonsForFileUtil.css'; interface ActionButtonsForFileUtilProps extends PConnProps { // If any, enter additional props that only exist on this component arMainButtons: any[]; arSecondaryButtons: any[]; primaryAction: any; secondaryAction: any; } export default function ActionButtonsForFileUtil(props: ActionButtonsForFileUtilProps) { return (
{props.arSecondaryButtons.map(file => ( ))}
{props.arMainButtons.map(file => ( ))}
); }