Files
xrpl-hooks-ide/components/Text.tsx
2022-01-05 16:32:07 +05:30

22 lines
316 B
TypeScript

import { styled } from "../stitches.config";
const Text = styled("span", {
fontFamily: "$body",
lineHeight: "$body",
color: "$text",
variants: {
small: {
true: {
fontSize: '$xs'
}
},
muted: {
true: {
color: '$mauve9'
}
}
}
});
export default Text;