mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-13 13:42:30 +00:00
20 lines
349 B
JavaScript
20 lines
349 B
JavaScript
// @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.
|
|
*/
|
|
export default class AbstractCircularLabel<P: Props, S: *>
|
|
extends Component<P, S> {
|
|
|
|
}
|