mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
13 lines
419 B
TypeScript
13 lines
419 B
TypeScript
import { ListItemText, Link } from "@mui/material";
|
|
import styles from './styles.module.css'
|
|
import { withStyles } from '@mui/material/styles';
|
|
import styled from '@emotion/styled'
|
|
import React from "react";
|
|
|
|
export default function FooterLink(props) {
|
|
return (
|
|
<ListItemText inset >
|
|
<Link href={props.href}><a className={styles.navLinks}>{props.title}</a></Link>
|
|
</ListItemText>
|
|
)
|
|
} |