Skip to content

Commit

Permalink
res bt to bt
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeparticle committed Sep 17, 2023
1 parent 7b230a6 commit a2c84d8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ui/src/components/Layouts/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { theme, Switch, Space } from "antd";
import { theme, Switch, Space, Button } from "antd";
import style from "./Footer.module.scss";
import MonogramDark from "assets/netlify-monogram-dark.svg";
import MonogramLight from "assets/netlify-monogram-light.svg";
import Logo from "assets/netlify-dark.svg";
import { FooterProps } from "./utils/types";
import { classNames } from "lib/utils/helper";
import Icon from "components/General/Icon";
import { ResponsiveButton } from "components/General/FormComponents";

const Footer: React.FC<FooterProps> = ({
handleThemeChange,
Expand Down Expand Up @@ -53,7 +52,7 @@ const Footer: React.FC<FooterProps> = ({
checked={isDarkMode}
/>

<ResponsiveButton
<Button
onClick={handleMenuCollapse}
type="text"
className={style.footer__menuCollapse}
Expand All @@ -63,7 +62,7 @@ const Footer: React.FC<FooterProps> = ({
) : (
<Icon name="ChevronsLeft" color={colorText} />
)}
</ResponsiveButton>
</Button>
</Space>
);
};
Expand Down

0 comments on commit a2c84d8

Please sign in to comment.