Files
xrpl-hooks-ide/components/LogText.tsx
2022-08-17 11:50:49 +05:30

32 lines
512 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