Files
xrpl-hooks-ide/components/Heading.tsx
2021-11-25 22:01:27 +02:00

17 lines
288 B
TypeScript

import { styled } from "../stitches.config";
const Heading = styled("span", {
fontFamily: "$heading",
lineHeight: "$heading",
fontWeight: "$heading",
variants: {
uppercase: {
true: {
textTransform: "uppercase",
},
},
},
});
export default Heading;