@cimpress/react-components
Version:
React components to support the MCP styleguide
8 lines • 376 B
TypeScript
import React, { HTMLAttributes } from 'react';
export interface InlineButtonProps extends HTMLAttributes<HTMLElement> {
as?: React.ElementType<any>;
onClick: (e: any, ...more: unknown[]) => void;
[rest: string]: any;
}
export declare const InlineButton: ({ as, onClick, ...rest }: InlineButtonProps) => React.JSX.Element;
//# sourceMappingURL=InlineButton.d.ts.map