9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
import styled from "@emotion/styled";
|
|
import { Link as RouterLink } from "react-router-dom";
|
|
|
|
const Link = styled(RouterLink)({
|
|
color: "rgb(35, 115, 220)",
|
|
});
|
|
|
|
export default Link;
|