Files
xrpl-hooks-ide/components/LogText.tsx
2022-02-02 12:12:07 +02:00

32 lines
525 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: "$yellow11",
},
error: {
color: "$red11",
},
success: {
color: "$green11",
},
},
capitalize: {
true: {
textTransform: "capitalize",
},
},
},
});
export default Text;