11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
import { styled } from "../stitches.config";
|
|
|
|
const Heading = styled("span", {
|
|
fontFamily: "$heading",
|
|
lineHeight: "$heading",
|
|
fontWeight: "$heading",
|
|
textTransform: "uppercase",
|
|
});
|
|
|
|
export default Heading;
|