@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
29 lines (24 loc) • 612 B
text/typescript
import { ReactNode } from 'react';
import { AriaButtonProps } from '@react-types/button';
export interface Props extends AriaButtonProps<'a'> {
/**
* Custom class to be able to override the component's CSS
*/
className?: string;
/**
* Child components of this ButtonDialpad. This prop replaces primaryText.
*/
children?: ReactNode;
/**
* Whether or not this ButtonDialpad is disabled.
*/
disabled?: boolean;
/**
* Whether or not this ButtonDialpad has inverted theme colors.
*/
inverted?: boolean;
/**
* title to use for this component.
*/
title?: string;
}