Removed unneeded button component.

This commit is contained in:
Lucid Kobold
2022-12-14 16:08:43 -05:00
parent 3534001c46
commit 499b03bb8a
2 changed files with 0 additions and 28 deletions

View File

@@ -1,27 +0,0 @@
import React from "react";
import { Box, Link, Button, BoxProps } from "@chakra-ui/react";
import { Icon } from "@iconify/react";
import { motion } from "framer-motion";
const MotionBox = motion<BoxProps>(Box);
const Updates = (): JSX.Element => {
return (
<MotionBox whileHover={{ scale: 1.1 }} whileTap={{ scale: 0.9 }}>
<Link
href="https://t.me/LucidCreationsMedia"
target="_blank"
rel="noopener"
>
<Button
variant="primary"
leftIcon={<Icon icon="bi:info-lg" />}
>
{"Dev Updates"}
</Button>
</Link>
</MotionBox>
);
};
export default Updates;

View File

@@ -3,7 +3,6 @@ import { Box, HStack, VStack } from "@chakra-ui/react";
import CustomButton from "./Custom";
import links, { LinkObj } from "./data/links";
import KoFi from "./KoFi";
import Updates from "./Updates";
const Buttons = (): JSX.Element => {
return (