9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
import { styled } from "../stitches.config";
|
|
|
|
const StyledLink = styled("a", {
|
|
color: "CurrentColor",
|
|
textDecoration: "underline",
|
|
});
|
|
|
|
export default StyledLink;
|