UNPKG

@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

25 lines (24 loc) 719 B
/// <reference types="react" /> export declare type ParagraphSize = 'small' | 'medium' | 'large' | 'xlarge'; export declare type Margin = 'none' | 'small' | 'medium' | 'large'; export declare type TextAlign = 'left' | 'right' | 'center' | 'justify'; export interface SizeMap { small: number; medium: number; large: number; xlarge: number; } export interface MarginSizeMap { none: number; small: number; medium: number; large: number; } export interface UpParagraphProps { color?: string; textAlign?: TextAlign; paragraphSize?: ParagraphSize; margin?: Margin; className?: string; children?: string | JSX.Element | Array<React.ReactNode>; }