@netdata/netdata-ui
Version:
netdata UI kit
20 lines (15 loc) • 419 B
TypeScript
export interface TextAlignType {
textAlign?: "left" | "center" | "right"
}
export interface TextDecorationType {
textDecoration?: "underline" | "none" | "line-through"
}
export interface TruncateType {
truncate?: boolean
}
export interface WhiteSpaceProps {
whiteSpace?: "normal" | "nowrap" | "pre-line"
}
export interface WordBreakProps {
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word"
}