10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
import { styled } from "../stitches.config";
|
|
|
|
const Text = styled("span", {
|
|
fontFamily: "$body",
|
|
lineHeight: "$body",
|
|
color: "$text",
|
|
});
|
|
|
|
export default Text;
|