UNPKG

jiro-ui

Version:

A Mithril.js UI library based from construct-ui

10 lines (8 loc) 256 B
export const Intent = { NONE: 'none' as 'none', PRIMARY: 'primary' as 'primary', NEGATIVE: 'negative' as 'negative', POSITIVE: 'positive' as 'positive', WARNING: 'warning' as 'warning' }; export type Intent = typeof Intent[keyof typeof Intent];