7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
export type TextAlignment = 'left' | 'center' | 'right';
|
|
export enum TextAlignmentClasses {
|
|
'left' = 'text-left',
|
|
'center' = 'text-center',
|
|
'right' = 'text-right'
|
|
}
|