Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

AbstractCircularLabel.js 322B

123456789101112131415161718
  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, S: *>
  13. extends Component<P, S> {
  14. }