Gitako/src/components/ToggleShowButton.js
2018-05-19 14:59:36 +08:00

13 lines
396 B
JavaScript

import preact from 'preact'
/** @jsx preact.h */
import Icon from './Icon'
import cx from '../utils/cx'
export default function Logo({ shouldShow, toggleShowSideBar }) {
return (
<div className={cx('gitako-toggle-show-button-wrapper', { collapsed: !shouldShow })} onClick={toggleShowSideBar}>
<Icon className={'action-icon'} type={shouldShow ? 'x' : 'octoface'} />
</div>
)
}