Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 1234567891011121314151617 |
- // @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> {
-
- }
|