UNPKG

@codedoc/core

Version:

Create beautiful modern documentation websites.

12 lines (11 loc) 498 B
import { RendererLike } from '@connectv/html'; import { ThemedComponentThis } from '@connectv/jss-theme'; import { CodedocTheme } from '../../theme'; export declare const ButtonStyle: import("@connectv/jss-theme").ThemedStyle<CodedocTheme>; export interface ButtonOptions { url?: string; onclick?: string; label: string; icon?: string; } export declare function Button(this: ThemedComponentThis<CodedocTheme>, options: ButtonOptions, renderer: RendererLike<any, any>): HTMLElement;