UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

14 lines (13 loc) 461 B
/// <reference types="react" /> /** Свойства для {@link Ribbon} */ export interface IRibbonProps { className?: string; children?: React.ReactNode; } /** * Представляет собой "ленту", на которой могут располагаться группы и кнопки. */ export declare const Ribbon: import("styled-components").StyledComponent<"div", any, { className: string; } & IRibbonProps, "className">;