Files
windmill/frontend/src/lib/components/apps/editor/componentsPanel/componentDefaultProps.ts
T
Ádám Kovács 4b2b3467d2 feat: Update apps button component with colors (#936)
* feat: Update app component types

* fix: Typos

* feat: Add select input type to components

* fix: Remove width property from component types

* fix: Make button full width in editor

* fix: Types

Co-authored-by: Faton Ramadani <faton.ramadani14@gmail.com>
2022-11-23 19:45:19 +01:00

14 lines
248 B
TypeScript

import type { Aligned } from "../../types"
const defaultProps = {
inputs: {},
componentInputs: {}
}
const defaultAlignement: Aligned = {
horizontalAlignment: 'center',
verticalAlignment: 'center'
}
export { defaultProps, defaultAlignement }