Files
xrpl-hooks-ide/components/LogText.tsx
2021-12-13 17:23:09 +02:00

31 lines
499 B
TypeScript

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