jiti-meet/react/features/base/label/components/AbstractCircularLabel.js

20 lines
349 B
JavaScript
Raw Normal View History

// @flow
import { Component } from 'react';
export type Props = {
/**
* String or component that will be rendered as the label itself.
*/
label: string | React$Node
};
/**
* Abstract class for the {@code CircularLabel} component.
*/
2018-09-11 10:16:01 +00:00
export default class AbstractCircularLabel<P: Props, S: *>
extends Component<P, S> {
}