19 lines
322 B
JavaScript
19 lines
322 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, S: *>
|
|
extends Component<P, S> {
|
|
|
|
}
|