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"
}
