basantech89/awesome-ui

View on GitHub
src/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export declare type BrandColor =
  | 'primary'
  | 'secondary'
  | 'tertiary'
  | 'error'
  | 'warning'
  | 'success'
  | 'info'

export declare type CommonElementSize = 'xs' | 'sm' | 'md' | 'lg'

export declare type CommonElementPlacement = 'left' | 'right'