mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-12 00:06:14 +00:00
* feat(frontend): Update button component styles * feat(frontend): Use button component * fix(frontend): Re-export button types * feat(frontend): Use action row in script page * fix(frontend): Center the action row * fix(frontend): Revert to previous event forwarding * feature(frontend): Add action row to flow page * fix(frontend): Restore button red color
7 lines
223 B
TypeScript
7 lines
223 B
TypeScript
export namespace Button {
|
|
export type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
|
|
export type Color = 'blue' | 'red' | 'dark' | 'light'
|
|
export type Variant = 'contained' | 'border'
|
|
export type Target = '_self' | '_blank'
|
|
}
|