Sidebar and edit updates
This commit is contained in:
parent
d73b194d1f
commit
f13530f043
32 changed files with 3057 additions and 1114 deletions
|
|
@ -8,13 +8,15 @@ interface ButtonProps {
|
|||
text: string;
|
||||
color: string;
|
||||
href: string;
|
||||
onClick: any;
|
||||
}
|
||||
|
||||
export const Button: FC<ButtonProps> = ({ text, color, href }) => (
|
||||
export const Button: FC<ButtonProps> = ({ text, color, href, onClick }) => (
|
||||
<Link href={href} passHref>
|
||||
<MUIButton
|
||||
variant="contained"
|
||||
disableElevation
|
||||
onClick={onClick}
|
||||
sx={{
|
||||
fontFamily: "Poppins, sans-serif",
|
||||
fontWeight: 700,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue