Gitako/src/components/ToggleShowButton.js
2018-06-22 22:44:44 +08:00

12 lines
373 B
JavaScript

import React from 'react'
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>
)
}