You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
675 B
22 lines
675 B
4 years ago
|
import { CodedocConfig } from '@codedoc/core';
|
||
|
import { Header as _Header, GithubButton, Watermark } from '@codedoc/core/components';
|
||
|
|
||
|
|
||
|
export function Header(config: CodedocConfig, renderer: any) {
|
||
|
return (
|
||
|
<_Header>{config.misc?.github ?
|
||
|
<fragment>
|
||
|
<GithubButton action={config.misc.github.action || 'Star'}
|
||
|
repo={config.misc.github.repo}
|
||
|
user={config.misc.github.user}
|
||
|
large={config.misc.github.large === true}
|
||
|
count={config.misc.github.count !== false}
|
||
|
standardIcon={config.misc.github.standardIcon !== false}/>
|
||
|
<br/><br/>
|
||
|
</fragment>
|
||
|
: ''}
|
||
|
<Watermark/>
|
||
|
</_Header>
|
||
|
)
|
||
|
}
|