/** @format */
import React from "react"
import {
Avatar,
Button,
Checkbox,
Container,
CssBaseline,
FormControlLabel,
Grid,
Link,
makeStyles,
PropTypes,
TextField,
Typography,
TypographyTypeMap,
TypographyVariant,
} from "@material-ui/core"
import { LockOutlined } from "@material-ui/icons"
import { ThemeProvider } from "./theme-provider"
function Copyright() {
return (
{"Copyright © "}
Watheia Labs, LLC
{" "}
{new Date().getFullYear()}
{"."}
)
}
const useStyles = makeStyles((theme) => ({
paper: {
marginTop: theme.spacing(8),
display: "flex",
flexDirection: "column",
alignItems: "center",
},
avatar: {
margin: theme.spacing(1),
backgroundColor: theme.palette.secondary.main,
},
form: {
width: "100%", // Fix IE 11 issue.
marginTop: theme.spacing(1),
},
submit: {
margin: theme.spacing(3, 0, 2),
},
copyright: {
marginTop: theme.spacing(2),
},
}))
export function MockComponent() {
const classes = useStyles()
return (
)
}
export const DarkTheme = () => {
return (
)
}
export const LightTheme = () => {
return (
)
}