Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / ui / Button / typings.d.ts
Size: Mime:
import * as React from 'react';
export interface ButtonProps {
    className?: string;
    center?: boolean;
    isLowPriority?: boolean;
    isDisabled?: boolean;
    state?: string;
}
export interface ButtonWithIconProps {
    text?: string;
    icon?: React.ReactNode;
    children?: React.ReactNode;
    qa?: string;
}