UNPKG

@sap-ux/ui-components

Version:

SAP UI Components Library

21 lines 654 B
import React from 'react'; import type { UiIcons } from '../index.js'; export interface UIFlexibleTableRowActionProps { actionName: string; className?: string; iconName: UiIcons; disabled?: boolean; rowNumber: number; tableId: string; title?: string; onClick?: () => void; onFocus?: () => void; } /** * UIFlexibleTableRowActionButton Component. * * @param {UIFlexibleTableRowActionProps} props * @returns {React.ReactElement} */ export declare function UIFlexibleTableRowActionButton(props: Readonly<UIFlexibleTableRowActionProps>): React.ReactElement; //# sourceMappingURL=UIFlexibleTableRowActionButton.d.ts.map