File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
src/main/kotlin/com/github/underlow/semantic/elements/segment Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments