@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
18 lines (17 loc) • 643 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
import { ThemedProps } from '../../../Common/theming/types';
export declare type Alignement = 'h' | 'v';
export declare type AddOnMode = 'none' | 'left' | 'right';
export interface UpButtonGroupProps extends ThemedProps {
gutter?: number;
align?: Alignement;
isAddOn?: AddOnMode;
}
export interface UpButtonGroupStyledProps extends UpButtonGroupProps {
}
export default class UpButtonGroup extends React.Component<UpButtonGroupProps, undefined> {
constructor(props: any);
static defaultProps: UpButtonGroupProps;
render(): JSX.Element;
}