@arche-mc2/arche-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) • 940 B
TypeScript
import { NestedCSSProperties } from 'typestyle/lib/types';
import { UpButtonProps, UpButtonStyledProps } from './types';
export declare type Position = 'left' | 'right' | 'none';
export declare const iconNormal: (props: UpButtonProps) => NestedCSSProperties;
export declare const iconLarge: (props: UpButtonProps) => NestedCSSProperties;
export declare const getWidth: (props: UpButtonProps) => NestedCSSProperties;
export declare const getHeight: (props: UpButtonProps) => NestedCSSProperties;
export declare const rounded: (props: UpButtonProps) => NestedCSSProperties;
export declare const borderless: (props: UpButtonProps) => NestedCSSProperties;
export declare const rotatingAnimation: string;
export declare const rotate: (props: UpButtonProps) => NestedCSSProperties;
export declare const getStyles: (props: UpButtonStyledProps) => string;
export declare const getWrapperStyles: (props: UpButtonStyledProps) => string;