-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2bc471
commit e1bd9f6
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* A row of items which are separated by a gap (uses Ui.Container). */ | ||
component Ui.Row { | ||
/* The size of the component. */ | ||
property size : Ui.Size = Ui.Size::Inherit | ||
|
||
/* The gap between the items. */ | ||
property gap : Ui.Size = Ui.Size::Em(0.5) | ||
|
||
/* The items to render. */ | ||
property children : Array(Html) = [] | ||
|
||
/* Where to justify the items. */ | ||
property justify : String = "stretch" | ||
|
||
/* Where to align the items. */ | ||
property align : String = "stretch" | ||
|
||
/* Renders the component. */ | ||
fun render : Html { | ||
<Ui.Container | ||
orientation="horizontal" | ||
justify={justify} | ||
align={align} | ||
size={size} | ||
gap={gap}> | ||
|
||
<{ children }> | ||
|
||
</Ui.Container> | ||
} | ||
} |