@up-group/react-controls
Version:
We know that there are a ton of react UI library projects to choose from. Our hope with this one is to provide the next generation of react components that you can use to bootstrap your next project, or as a reference for building a UIKit. Read on to get
12 lines (11 loc) • 379 B
TypeScript
/// <reference types="react" />
import { Component } from "react";
import { UpTooltipProps } from './';
export interface UpTooltipState {
}
export default class UpTooltip extends Component<UpTooltipProps, UpTooltipState> {
static defaultProps: UpTooltipProps;
constructor(props: UpTooltipProps);
getContent: () => JSX.Element;
render(): JSX.Element;
}