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/ui / dist / components / molecules / Telephone / typings.d.ts
Size: Mime:
export interface TelephoneProps {
    phoneNo?: string | number;
    phoneno?: string | number;
    value?: string | number;
    number?: string | number;
    telephone?: string | number;
    telephoneNumber?: string | number;
    shouldFormat?: boolean;
    shouldUseIcon?: boolean;
    renderIcon?: TelephoneRenderProp;
    renderValue?: TelephoneRenderProp;
    render?: TelephoneRenderProp;
    children?: any;
}
export interface TelephoneAttributes {
    attributes?: TelephoneAttributesOrProps;
    render?: TelephoneRenderProp;
    renderIcon?: TelephoneRenderProp;
    shouldUseIcon?: boolean;
    className?: string;
    isLink?: boolean;
    to?: string;
    telephone?: string;
}
export declare type TelephoneRenderProp = (props: TelephoneAttributesOrProps) => any;
export declare type TelephoneAttributesOrProps = TelephoneProps | TelephoneAttributes;