@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
13 lines (11 loc) • 312 B
text/typescript
import type { MdcButtonProps } from '../../types';
export interface Props extends Omit<MdcButtonProps, 'size' | 'variant'> {
/**
* Primary text to display above the secondary text.
*/
primaryText?: string;
/**
* Secondary text to display below the primary text.
*/
secondaryText?: string;
}