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

14 lines (13 loc) 511 B
/// <reference types="react" /> import * as React from 'react'; import { UpFileStyleProps } from './'; import { ThemeInterface } from "../../../Common/theming/types"; export declare const BaseFileStyle: React.ComponentClass<UpFileStyleProps & { theme?: ThemeInterface; innerRef?: (instance: any) => void; }>; declare class UpFileStyle extends React.Component<UpFileStyleProps, undefined> { static defaultProps: UpFileStyleProps; render(): JSX.Element; } export default UpFileStyle;