pomerium/ui/src/components/FooterLink.tsx
Nathan Hayfield fd8ec0099e
Style update for User Info Endpoint (#3055)
* style changes from mui 5

* fix spacing issue on small screen

* remove unneeded import

* add default exports

* make linter happy

* more style changes

* use startCase from lodash

Co-authored-by: Caleb Doxsey <cdoxsey@pomerium.com>
2022-02-18 12:39:44 -05:00

10 lines
284 B
TypeScript

import * as React from 'react';
import { styled } from '@mui/system';
import {Link} from "@mui/material";
export const FooterLink = styled(Link)(({ theme }) => ({
fontSize: '1.25rem',
fontWeight: `bold`,
color: theme.palette.background.default,
}));
export default FooterLink;