31 lines
499 B
TypeScript
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;
|