@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
26 lines (21 loc) • 437 B
text/typescript
import { CSSProperties } from 'react';
export interface Props {
/**
* Size of the Divider dot
*
* @default 'small'
*/
size?: 'small' | 'medium' | 'large';
/**
* Custom class for overriding this component's CSS.
*/
className?: string;
/**
* Custom id for overriding this component's CSS.
*/
id?: string;
/**
* Custom style for overriding this component's CSS.
*/
style?: CSSProperties;
}