Files
xrpl-hooks-ide/components/LogText.tsx
2022-02-09 19:06:29 +05:30

32 lines
524 B
TypeScript

import { styled } from "../stitches.config";
const Text = styled("span", {
fontFamily: "$monospace",
lineHeight: "$body",
color: "$text",
wordWrap: "break-word",
variants: {
variant: {
log: {
color: "$text",
},
warning: {
color: "$warning",
},
error: {
color: "$error",
},
success: {
color: "$success",
},
},
capitalize: {
true: {
textTransform: "capitalize",
},
},
},
});
export default Text;