UNPKG

@innovaccer/design-system

Version:

React components library project for Innovaccer Design System

16 lines (15 loc) 397 B
import * as React from 'react'; import { MessageAppearance } from "../../../common.type"; export interface Props { appearance: MessageAppearance; label: string; onClick?: (e: React.MouseEvent) => void; } declare const ActionButton: { (props: Props): React.JSX.Element; displayName: string; defaultProps: { appearance: string; }; }; export default ActionButton;