Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

AbstractCircularLabel.js 309B

1234567891011121314151617
  1. // @flow
  2. import { Component } from 'react';
  3. export type Props = {
  4. /**
  5. * String that will be rendered as the label itself.
  6. */
  7. label: string
  8. };
  9. /**
  10. * Abstract class for the {@code CircularLabel} component.
  11. */
  12. export default class AbstractCircularLabel<P: Props> extends Component<P> {
  13. }