Newer
Older
CrypticOreWallet / src / layouts / main / components / sidebar / SidebarCollapseButton.tsx
@Drew Lemmy Drew Lemmy on 19 Sep 2020 351 bytes fix: responsiveness tweaks
import React from "react";

import Navbar from "react-bootstrap/Navbar";

import "./SidebarCollapseButton.scss";

interface Props {
  onCollapseSidebar: () => void;
}

export const SidebarCollapseButton: React.FC<Props> = ({ onCollapseSidebar }: Props): JSX.Element => {
  return (
    <Navbar.Toggle 
      onClick={onCollapseSidebar}
    />
  );
};