@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
13 lines (12 loc) • 661 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
import { ThemeInterface } from "../../../Common/theming/types";
import { ThemeProps, InterpolationFunction } from "styled-components/typings/styled-components";
import { UpLigneProps } from './';
export declare const style: (string | number | InterpolationFunction<UpLigneProps & ThemeProps<ThemeInterface>>)[];
export declare const SpanStyled: React.ComponentClass<React.HTMLProps<HTMLSpanElement> & UpLigneProps & {
theme?: ThemeInterface;
innerRef?: (instance: any) => void;
}>;
declare const LigneStyled: React.StatelessComponent<UpLigneProps>;
export default LigneStyled;