Skip to content

Commit 802d13e

Browse files
committed
SegmentGroup added
1 parent 10e0c1e commit 802d13e

File tree

1 file changed

+25
-0
lines changed
  • src/main/kotlin/com/github/underlow/semantic/elements/segment

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
@file:JsModule("semantic-ui-react/dist/commonjs/elements/Segment/SegmentGroup")
2+
3+
package com.github.underlow.semantic.elements.segment
4+
5+
import com.github.underlow.semantic.SegmentSizeProp
6+
import com.github.underlow.semantic.SemanticShorthandContent
7+
import react.RClass
8+
import react.RProps
9+
import react.ReactElement
10+
11+
external interface SegmentGroupProps : RProps {
12+
var `as`: Any?
13+
var children: ReactElement?
14+
var className: String?
15+
var compact: Boolean?
16+
var content: SemanticShorthandContent?
17+
var horizontal: Boolean?
18+
var piled: Boolean?
19+
var raised: Boolean?
20+
var size: SegmentSizeProp?
21+
var stacked: Boolean?
22+
}
23+
24+
@JsName("default")
25+
external var SegmentGroup: RClass<SegmentGroupProps> = definedExternally

0 commit comments

Comments
 (0)