@sinchsmb/ui-kit
Version:
UI kit for SinchSMB frontend
24 lines (23 loc) • 759 B
text/typescript
/** Supported text variants */
export enum TextVariant {
/**
* Use Headline only as a title of a screen.
* This text is located at the very top of the page inside the header.
*/
SectionHeadline = 'SectionHeadline',
/** The style used for titles of cards and modal windows. */
CardTitle = 'CardTitle',
/**
* Sometimes you need to put additional information next to the card's Title.
* Take a look at the example below.
*/
CardSubtitle = 'CardSubtitle',
/** This style is used to divide the card into subsections. */
GroupHeader = 'GroupHeader',
/** This is a common default style. */
Body = 'Body',
/** Use for captions and data visualizations. */
Caption = 'Caption',
/** Inline code snippets */
Code = 'Code',
}