export type TJustifyContent =
  | 'flex-start'
  | 'flex-end'
  | 'center'
  | 'space-between'
  | 'space-around'
  | 'space-evenly';

export type TAlignItems =
  | 'stretch'
  | 'flex-start'
  | 'flex-end'
  | 'center'
  | 'baseline';

export type TFlexDirection =
  | 'row'
  | 'column'
  | 'row-reverse'
  | 'column-reverse';

export type TIconName = 'logoSymbol' | 'signin' | 'signout';
