UNPKG

@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

15 lines (14 loc) 520 B
/// <reference types="react" /> import * as React from 'react'; import { ThemedProps, IntentType } from '../../../Common/theming/types'; export declare type WidthSize = 'auto' | 'small' | 'medium' | 'large' | 'xlarge'; export declare type Align = 'left' | 'right'; export interface UpBadgeProps extends ThemedProps { text: string; color?: string; background?: string; rounded?: boolean; intent?: IntentType; } declare const _default: React.ComponentClass<any>; export default _default;