@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
25 lines (20 loc) • 461 B
text/typescript
import { ReactNode } from 'react';
import { ButtonSimpleProps } from '../ButtonSimple';
export interface Props extends ButtonSimpleProps {
/**
* Child components of this ButtonPill.
*/
children?: ReactNode;
/**
* Color for this component.
*/
color?: 'error' | 'success' | 'theme' | 'warning';
/**
* Image to use for this component.
*/
image?: ReactNode;
/**
* Label to use for this component.
*/
label?: ReactNode;
}