Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janjakubnanista/658929af4040490dd3ec36f6e4164bb4 to your computer and use it in GitHub Desktop.
Save janjakubnanista/658929af4040490dd3ec36f6e4164bb4 to your computer and use it in GitHub Desktop.
enum ButtonType {
PRIMARY = 'primary',
SECONDARY = 'secondary',
  LINK = 'link'
}
const buttonTypes: ButtonType[] = Object.values(ButtonType) as ButtonType[];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment