@shopify/polaris
Version:
Shopify’s admin product component library
10 lines • 520 B
TypeScript
import React from 'react';
import type { ComplexAction, DisableableAction, LoadableAction } from '../../types';
export interface PageActionsProps {
/** The primary action for the page */
primaryAction?: (DisableableAction & LoadableAction) | React.ReactNode;
/** The secondary actions for the page */
secondaryActions?: ComplexAction[] | React.ReactNode;
}
export declare function PageActions({ primaryAction, secondaryActions, }: PageActionsProps): JSX.Element;
//# sourceMappingURL=PageActions.d.ts.map