Files
xrpl-hooks-ide/components/Heading.tsx
2022-08-17 11:50:49 +05:30

17 lines
281 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