mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-10 18:52:32 +00:00
18 lines
309 B
JavaScript
18 lines
309 B
JavaScript
// @flow
|
|
import { Component } from 'react';
|
|
|
|
export type Props = {
|
|
|
|
/**
|
|
* String that will be rendered as the label itself.
|
|
*/
|
|
label: string
|
|
};
|
|
|
|
/**
|
|
* Abstract class for the {@code CircularLabel} component.
|
|
*/
|
|
export default class AbstractCircularLabel<P: Props> extends Component<P> {
|
|
|
|
}
|