elements

package
v1.0.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 9, 2020 License: MIT Imports: 2 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// TRUE is used when a pointer to a bool is required.
	TRUE = true
	// FALSE is used when a pointer to a bool is required.
	FALSE = false
)

Functions

func A

func A(props *AProps, children ...interface{}) *js.Object

A ...

func Abbr

func Abbr(props *AbbrProps, children ...interface{}) *js.Object

Abbr ...

func Article

func Article(props *AbbrProps, children ...interface{}) *js.Object

Article ...

func Aside

func Aside(props *AsideProps, children ...interface{}) *js.Object

Aside ...

func B

func B(props *BProps, children ...interface{}) *js.Object

B ...

func Body

func Body(props *BodyProps, children ...interface{}) *js.Object

Body ...

func Br

func Br(props *BrProps, children ...interface{}) *js.Object

Br ...

func Button

func Button(props *ButtonProps, children ...interface{}) *js.Object

Button ...

func Caption

func Caption(props *CaptionProps, children ...interface{}) *js.Object

Caption ...

func Code

func Code(props *CodeProps, children ...interface{}) *js.Object

Code ...

func Div

func Div(props *DivProps, children ...interface{}) *js.Object

Div ...

func Em

func Em(props *EmProps, children ...interface{}) *js.Object

Em ...

func Footer(props *FooterProps, children ...interface{}) *js.Object

Footer ...

func Form

func Form(props *FormProps, children ...interface{}) *js.Object

Form ...

func H1

func H1(props *H1Props, children ...interface{}) *js.Object

H1 ...

func H2

func H2(props *H2Props, children ...interface{}) *js.Object

H2 ...

func H3

func H3(props *H3Props, children ...interface{}) *js.Object

H3 ...

func H4

func H4(props *H4Props, children ...interface{}) *js.Object

H4 ...

func H5

func H5(props *H5Props, children ...interface{}) *js.Object

H5 ...

func H6

func H6(props *H6Props, children ...interface{}) *js.Object

H6 ...

func Header(props *HeaderProps, children ...interface{}) *js.Object

Header ...

func Hr

func Hr(props *HrProps, children ...interface{}) *js.Object

Hr ...

func I

func I(props *IProps, children ...interface{}) *js.Object

I ...

func IFrame

func IFrame(props *IFrameProps, children ...interface{}) *js.Object

IFrame ...

func Img

func Img(props *ImgProps, children ...interface{}) *js.Object

Img ...

func Input

func Input(props *InputProps, children ...interface{}) *js.Object

Input ...

func Label

func Label(props *LabelProps, children ...interface{}) *js.Object

Label ...

func Li

func Li(props *LiProps, children ...interface{}) *js.Object

Li ...

func Main

func Main(props *MainProps, children ...interface{}) *js.Object

Main ...

func Nav(props *NavProps, children ...interface{}) *js.Object

Nav ...

func Option

func Option(props *OptionProps, children ...interface{}) *js.Object

Option ...

func P

func P(props *PProps, children ...interface{}) *js.Object

P ...

func Pre

func Pre(props *PreProps, children ...interface{}) *js.Object

Pre ...

func S

func S(props *SProps, children ...interface{}) *js.Object

S ...

func Select

func Select(props *SelectProps, children ...interface{}) *js.Object

Select ...

func Span

func Span(props *SpanProps, children ...interface{}) *js.Object

Span ...

func Sup

func Sup(props *SupProps, children ...interface{}) *js.Object

Sup ...

func TBody

func TBody(props *TBodyProps, children ...interface{}) *js.Object

TBody ...

func TFoot

func TFoot(props *TFootProps, children ...interface{}) *js.Object

TFoot ...

func THead

func THead(props *THeadProps, children ...interface{}) *js.Object

THead ...

func Table

func Table(props *TableProps, children ...interface{}) *js.Object

Table ...

func Td

func Td(props *TdProps, children ...interface{}) *js.Object

Td ...

func TextArea

func TextArea(props *TextAreaProps, children ...interface{}) *js.Object

TextArea ...

func Th

func Th(props *ThProps, children ...interface{}) *js.Object

Th ...

func Tr

func Tr(props *TrProps, children ...interface{}) *js.Object

Tr ...

func Ul

func Ul(props *UlProps, children ...interface{}) *js.Object

Ul ...

Types

type AProps

type AProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`

	Href   string `react:"href,omitempty"`
	Target string `react:"target,omitempty"`
}

AProps ...

type AbbrProps

type AbbrProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

AbbrProps ...

type ArticleProps

type ArticleProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

ArticleProps ...

type AsideProps

type AsideProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

AsideProps ...

type BProps

type BProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

BProps ...

type BodyProps

type BodyProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnAfterPrint   *js.Object `react:"onAfterPrint,omitempty"`
	OnBeforePrint  *js.Object `react:"onBeforePrint,omitempty"`
	OnBeforeUnload *js.Object `react:"onBeforeUnload,omitempty"`
	OnError        *js.Object `react:"onError,omitempty"`
	OnHashChange   *js.Object `react:"onHashChange,omitempty"`
	OnLoad         *js.Object `react:"onLoad,omitempty"`
	OnOffline      *js.Object `react:"onOffline,omitempty"`
	OnOnline       *js.Object `react:"onOnline,omitempty"`
	OnPageShow     *js.Object `react:"onPageShow,omitempty"`
	OnResize       *js.Object `react:"onResize,omitempty"`
	OnUnload       *js.Object `react:"onUnload,omitempty"`
	OnBlur         *js.Object `react:"onBlur,omitempty"`
	OnFocus        *js.Object `react:"onFocus,omitempty"`
	OnChange       *js.Object `react:"onChange,omitempty"`
	OnClick        *js.Object `react:"onClick,omitempty"`
}

BodyProps ...

type BrProps

type BrProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

BrProps ...

type ButtonProps

type ButtonProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`

	AutoFocus         *bool  `react:"autofocus,omitempty"`
	Disabled          *bool  `react:"disabled,omitempty"`
	Form              string `react:"form,omitempty"`
	FormAction        string `react:"formaction,omitempty"`
	FormEncType       string `react:"formenctype,omitempty"`
	FormMethod        string `react:"formmethod,omitempty"`
	FormNoValidate    *bool  `react:"formnovalidate,omitempty"`
	FormTarget        string `react:"formtarget,omitempty"`
	Name              string `react:"name,omitempty"`
	Type              string `react:"type,omitempty"`
	ValidationMessage string `react:"validationmessage,omitempty"`
	Value             string `react:"value,omitempty"`
	WillValidate      *bool  `react:"willvalidate,omitempty"`
}

ButtonProps ...

type CaptionProps

type CaptionProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

CaptionProps ...

type CodeProps

type CodeProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

CodeProps ...

type DivProps

type DivProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

DivProps ...

type EmProps

type EmProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

EmProps ...

type FooterProps

type FooterProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

FooterProps ...

type FormProps

type FormProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur        *js.Object `react:"onBlur,omitempty"`
	OnChange      *js.Object `react:"onChange,omitempty"`
	OnClick       *js.Object `react:"onClick,omitempty"`
	OnContextMenu *js.Object `react:"onContextMenu,omitempty"`
	OnFocus       *js.Object `react:"onFocus,omitempty"`
	OnInput       *js.Object `react:"onInput,omitempty"`
	OnInvalid     *js.Object `react:"onInvalid,omitempty"`
	OnReset       *js.Object `react:"onReset,omitempty"`
	OnSearch      *js.Object `react:"onSearch,omitempty"`
	OnSelect      *js.Object `react:"onSelect,omitempty"`
	OnSubmit      *js.Object `react:"onSubmit,omitempty"`

	AcceptCharset string `react:"acceptCharset,omitempty"`
	Action        string `react:"action,omitempty"`
	Autocomplete  string `react:"autoComplete,omitempty"`
	Encoding      string `react:"encoding,omitempty"`
	Enctype       string `react:"encType,omitempty"`
	Length        *int   `react:"length,omitempty"`
	Method        string `react:"method,omitempty"`
	Name          string `react:"name,omitempty"`
	NoValidate    *bool  `react:"noValidate,omitempty"`
	Target        string `react:"target,omitempty"`
}

FormProps ...

type H1Props

type H1Props struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

H1Props ...

type H2Props

type H2Props struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

H2Props ...

type H3Props

type H3Props struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

H3Props ...

type H4Props

type H4Props struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

H4Props ...

type H5Props

type H5Props struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

H5Props ...

type H6Props

type H6Props struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

H6Props ...

type HeaderProps

type HeaderProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

HeaderProps ...

type HrProps

type HrProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

HrProps ...

type IFrameProps

type IFrameProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`

	Width    string `react:"width,omitempty"`
	Height   string `react:"height,omitempty"`
	Name     string `react:"name,omitempty"`
	Src      string `react:"src,omitempty"`
	SrcDoc   string `react:"srcDoc,omitempty"`
	Seamless *bool  `react:"seamless,omitempty"`
}

IFrameProps ...

type IProps

type IProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

IProps ...

type ImgProps

type ImgProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`

	Alt           string `react:"alt,omitempty"`
	Complete      *bool  `react:"complete,omitempty"`
	CrossOrigin   string `react:"crossOrigin,omitempty"`
	Height        string `react:"height,omitempty"`
	IsMap         *bool  `react:"isMap,omitempty"`
	NaturalHeight string `react:"naturalHeight,omitempty"`
	NaturalWidth  string `react:"naturalWidth,omitempty"`
	Src           string `react:"src,omitempty"`
	UseMap        string `react:"useMap,omitempty"`
	Width         string `react:"width,omitempty"`
}

ImgProps ...

type InputProps

type InputProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`

	Accept             string `react:"accept,omitempty"`
	Alt                string `react:"alt,omitempty"`
	Autocomplete       string `react:"autoComplete,omitempty"`
	Autofocus          *bool  `react:"autoFocus,omitempty"`
	Checked            *bool  `react:"checked,omitempty"`
	DefaultChecked     *bool  `react:"defaultChecked,omitempty"`
	DefaultValue       string `react:"defaultValue,omitempty"`
	DirName            string `react:"dirName,omitempty"`
	Disabled           *bool  `react:"disabled,omitempty"`
	FormAction         string `react:"formAction,omitempty"`
	FormEncType        string `react:"formEncType,omitempty"`
	FormMethod         string `react:"formMethod,omitempty"`
	FormNoValidate     *bool  `react:"formNoValidate,omitempty"`
	FormTarget         string `react:"formTarget,omitempty"`
	Height             string `react:"height,omitempty"`
	Indeterminate      *bool  `react:"indeterminate,omitempty"`
	Max                string `react:"max,omitempty"`
	MaxLength          *int   `react:"maxLength,omitempty"`
	Min                string `react:"min,omitempty"`
	Multiple           *bool  `react:"multiple,omitempty"`
	Name               string `react:"name,omitempty"`
	Pattern            string `react:"pattern,omitempty"`
	Placeholder        string `react:"placeholder,omitempty"`
	ReadOnly           *bool  `react:"readOnly,omitempty"`
	Required           *bool  `react:"required,omitempty"`
	SelectionDirection string `react:"selectionDirection,omitempty"`
	SelectionEnd       *int   `react:"selectionEnd,omitempty"`
	SelectionStart     *int   `react:"selectionStart,omitempty"`
	Size               *int   `react:"size,omitempty"`
	Src                string `react:"src,omitempty"`
	Step               string `react:"step,omitempty"`
	Type               string `react:"type,omitempty"`
	ValidationMessage  string `react:"validationMessage,omitempty"`
	Value              string `react:"value,omitempty"`
	Width              string `react:"width,omitempty"`
	WillValidate       *bool  `react:"willValidate,omitempty"`
}

InputProps ...

type LabelProps

type LabelProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`

	For  string `react:"htmlFor,omitempty"`
	Form string `react:"form,omitempty"`
}

LabelProps ...

type LiProps

type LiProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

LiProps ...

type MainProps

type MainProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

MainProps ...

type NavProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

NavProps ...

type OptionProps

type OptionProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`

	DefaultSelected *bool  `react:"defaultSelected,omitempty"`
	Disabled        *bool  `react:"disabled,omitempty"`
	Index           *int   `react:"index,omitempty"`
	Label           string `react:"label,omitempty"`
	Selected        *bool  `react:"selected,omitempty"`
	Text            string `react:"text,omitempty"`
	Value           string `react:"value,omitempty"`
}

OptionProps ...

type PProps

type PProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

PProps ...

type PreProps

type PreProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

PreProps ...

type SProps

type SProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

SProps ...

type SelectProps

type SelectProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`

	Autofocus         *bool  `react:"autofocus,omitempty"`
	Disabled          *bool  `react:"disabled,omitempty"`
	Length            *int   `react:"length,omitempty"`
	Multiple          *bool  `react:"multiple,omitempty"`
	Name              string `react:"name,omitempty"`
	Required          *bool  `react:"required,omitempty"`
	SelectedIndex     *int   `react:"selectedIndex,omitempty"`
	Size              *int   `react:"size,omitempty"`
	Type              string `react:"type,omitempty"`
	ValidationMessage string `react:"validationMessage,omitempty"`
	Value             string `react:"value,omitempty"`
	WillValidate      *bool  `react:"willValidate,omitempty"`
}

SelectProps ...

type SpanProps

type SpanProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

SpanProps ...

type Styles

type Styles struct {
	AlignContent                string `react:"alignContent,omitempty"`
	AlignItems                  string `react:"alignItems,omitempty"`
	AlignSelf                   string `react:"alignSelf,omitempty"`
	AlignmentBaseline           string `react:"alignmentBaseline,omitempty"`
	All                         string `react:"all,omitempty"`
	Animation                   string `react:"animation,omitempty"`
	AnimationDelay              string `react:"animationDelay,omitempty"`
	AnimationDirection          string `react:"animationDirection,omitempty"`
	AnimationDuration           string `react:"animationDuration,omitempty"`
	AnimationFillMode           string `react:"animationFillMode,omitempty"`
	AnimationIterationCount     string `react:"animationIterationCount,omitempty"`
	AnimationName               string `react:"animationName,omitempty"`
	AnimationPlayState          string `react:"animationPlayState,omitempty"`
	AnimationTimingFunction     string `react:"animationTimingFunction,omitempty"`
	Appearance                  string `react:"appearance,omitempty"`
	BackfaceVisibility          string `react:"backfaceVisibility,omitempty"`
	Background                  string `react:"background,omitempty"`
	BackgroundAttachment        string `react:"backgroundAttachment,omitempty"`
	BackgroundClip              string `react:"backgroundClip,omitempty"`
	BackgroundColor             string `react:"backgroundColor,omitempty"`
	BackgroundImage             string `react:"backgroundImage,omitempty"`
	BackgroundOrigin            string `react:"backgroundOrigin,omitempty"`
	BackgroundPosition          string `react:"backgroundPosition,omitempty"`
	BackgroundRepeat            string `react:"backgroundRepeat,omitempty"`
	BackgroundSize              string `react:"backgroundSize,omitempty"`
	BaselineShift               string `react:"baselineShift,omitempty"`
	Binding                     string `react:"binding,omitempty"`
	Bleed                       string `react:"bleed,omitempty"`
	BookmarkLabel               string `react:"bookmarkLabel,omitempty"`
	BookmarkLevel               string `react:"bookmarkLevel,omitempty"`
	BookmarkState               string `react:"bookmarkState,omitempty"`
	Border                      string `react:"border,omitempty"`
	BorderBottom                string `react:"borderBottom,omitempty"`
	BorderBottomColor           string `react:"borderBottomColor,omitempty"`
	BorderBottomLeftRadius      string `react:"borderBottomLeftRadius,omitempty"`
	BorderBottomRightRadius     string `react:"borderBottomRightRadius,omitempty"`
	BorderBottomStyle           string `react:"borderBottomStyle,omitempty"`
	BorderBottomWidth           string `react:"borderBottomWidth,omitempty"`
	BorderBoundary              string `react:"borderBoundary,omitempty"`
	BorderCollapse              string `react:"borderCollapse,omitempty"`
	BorderColor                 string `react:"borderColor,omitempty"`
	BorderImage                 string `react:"borderImage,omitempty"`
	BorderImageOutset           string `react:"borderImageOutset,omitempty"`
	BorderImageRepeat           string `react:"borderImageRepeat,omitempty"`
	BorderImageSlice            string `react:"borderImageSlice,omitempty"`
	BorderImageSource           string `react:"borderImageSource,omitempty"`
	BorderImageWidth            string `react:"borderImageWidth,omitempty"`
	BorderLeft                  string `react:"borderLeft,omitempty"`
	BorderLeftColor             string `react:"borderLeftColor,omitempty"`
	BorderLeftStyle             string `react:"borderLeftStyle,omitempty"`
	BorderLeftWidth             string `react:"borderLeftWidth,omitempty"`
	BorderRadius                string `react:"borderRadius,omitempty"`
	BorderRight                 string `react:"borderRight,omitempty"`
	BorderRightColor            string `react:"borderRightColor,omitempty"`
	BorderRightStyle            string `react:"borderRightStyle,omitempty"`
	BorderRightWidth            string `react:"borderRightWidth,omitempty"`
	BorderSpacing               string `react:"borderSpacing,omitempty"`
	BorderStyle                 string `react:"borderStyle,omitempty"`
	BorderTop                   string `react:"borderTop,omitempty"`
	BorderTopColor              string `react:"borderTopColor,omitempty"`
	BorderTopLeftRadius         string `react:"borderTopLeftRadius,omitempty"`
	BorderTopRightRadius        string `react:"borderTopRightRadius,omitempty"`
	BorderTopStyle              string `react:"borderTopStyle,omitempty"`
	BorderTopWidth              string `react:"borderTopWidth,omitempty"`
	BorderWidth                 string `react:"borderWidth,omitempty"`
	Bottom                      string `react:"bottom,omitempty"`
	BoxDecorationBreak          string `react:"boxDecorationBreak,omitempty"`
	BoxShadow                   string `react:"boxShadow,omitempty"`
	BoxSizing                   string `react:"boxSizing,omitempty"`
	BoxSnap                     string `react:"boxSnap,omitempty"`
	BoxSuppress                 string `react:"boxSuppress,omitempty"`
	BreakAfter                  string `react:"breakAfter,omitempty"`
	BreakBefore                 string `react:"breakBefore,omitempty"`
	BreakInside                 string `react:"breakInside,omitempty"`
	CaptionSide                 string `react:"captionSide,omitempty"`
	Caret                       string `react:"caret,omitempty"`
	CaretShape                  string `react:"caretShape,omitempty"`
	Chains                      string `react:"chains,omitempty"`
	Clear                       string `react:"clear,omitempty"`
	ClipPath                    string `react:"clipPath,omitempty"`
	ClipRule                    string `react:"clipRule,omitempty"`
	Color                       string `react:"color,omitempty"`
	ColorInterpolationFilters   string `react:"colorInterpolationFilters,omitempty"`
	ColumnCount                 string `react:"columnCount,omitempty"`
	ColumnFill                  string `react:"columnFill,omitempty"`
	ColumnGap                   string `react:"columnGap,omitempty"`
	ColumnRule                  string `react:"columnRule,omitempty"`
	ColumnRuleColor             string `react:"columnRuleColor,omitempty"`
	ColumnRuleStyle             string `react:"columnRuleStyle,omitempty"`
	ColumnRuleWidth             string `react:"columnRuleWidth,omitempty"`
	ColumnSpan                  string `react:"columnSpan,omitempty"`
	ColumnWidth                 string `react:"columnWidth,omitempty"`
	Columns                     string `react:"columns,omitempty"`
	Contain                     string `react:"contain,omitempty"`
	Content                     string `react:"content,omitempty"`
	CounterIncrement            string `react:"counterIncrement,omitempty"`
	CounterReset                string `react:"counterReset,omitempty"`
	CounterSet                  string `react:"counterSet,omitempty"`
	Crop                        string `react:"crop,omitempty"`
	Cue                         string `react:"cue,omitempty"`
	CueAfter                    string `react:"cueAfter,omitempty"`
	CueBefore                   string `react:"cueBefore,omitempty"`
	Cursor                      string `react:"cursor,omitempty"`
	Direction                   string `react:"direction,omitempty"`
	Display                     string `react:"display,omitempty"`
	DisplayInside               string `react:"displayInside,omitempty"`
	DisplayList                 string `react:"displayList,omitempty"`
	DisplayOutside              string `react:"displayOutside,omitempty"`
	DominantBaseline            string `react:"dominantBaseline,omitempty"`
	EmptyCells                  string `react:"emptyCells,omitempty"`
	Filter                      string `react:"filter,omitempty"`
	Flex                        string `react:"flex,omitempty"`
	FlexBasis                   string `react:"flexBasis,omitempty"`
	FlexDirection               string `react:"flexDirection,omitempty"`
	FlexFlow                    string `react:"flexFlow,omitempty"`
	FlexGrow                    string `react:"flexGrow,omitempty"`
	FlexShrink                  string `react:"flexShrink,omitempty"`
	FlexWrap                    string `react:"flexWrap,omitempty"`
	Float                       string `react:"float,omitempty"`
	FloatOffset                 string `react:"floatOffset,omitempty"`
	FloodColor                  string `react:"floodColor,omitempty"`
	FloodOpacity                string `react:"floodOpacity,omitempty"`
	FlowFrom                    string `react:"flowFrom,omitempty"`
	FlowInto                    string `react:"flowInto,omitempty"`
	Font                        string `react:"font,omitempty"`
	FontFamily                  string `react:"fontFamily,omitempty"`
	FontFeatureSettings         string `react:"fontFeatureSettings,omitempty"`
	FontKerning                 string `react:"fontKerning,omitempty"`
	FontLanguageOverride        string `react:"fontLanguageOverride,omitempty"`
	FontMaxSize                 string `react:"fontMaxSize,omitempty"`
	FontMinSize                 string `react:"fontMinSize,omitempty"`
	FontOpticalSizing           string `react:"fontOpticalSizing,omitempty"`
	FontPalette                 string `react:"fontPalette,omitempty"`
	FontPresentation            string `react:"fontPresentation,omitempty"`
	FontSize                    string `react:"fontSize,omitempty"`
	FontSizeAdjust              string `react:"fontSizeAdjust,omitempty"`
	FontStretch                 string `react:"fontStretch,omitempty"`
	FontStyle                   string `react:"fontStyle,omitempty"`
	FontSynthesis               string `react:"fontSynthesis,omitempty"`
	FontVariant                 string `react:"fontVariant,omitempty"`
	FontVariantAlternates       string `react:"fontVariantAlternates,omitempty"`
	FontVariantCaps             string `react:"fontVariantCaps,omitempty"`
	FontVariantEastAsian        string `react:"fontVariantEastAsian,omitempty"`
	FontVariantLigatures        string `react:"fontVariantLigatures,omitempty"`
	FontVariantNumeric          string `react:"fontVariantNumeric,omitempty"`
	FontVariantPosition         string `react:"fontVariantPosition,omitempty"`
	FontVariationSettings       string `react:"fontVariationSettings,omitempty"`
	FontWeight                  string `react:"fontWeight,omitempty"`
	Grid                        string `react:"grid,omitempty"`
	GridArea                    string `react:"gridArea,omitempty"`
	GridAutoColumns             string `react:"gridAutoColumns,omitempty"`
	GridAutoFlow                string `react:"gridAutoFlow,omitempty"`
	GridAutoRows                string `react:"gridAutoRows,omitempty"`
	GridColumn                  string `react:"gridColumn,omitempty"`
	GridColumnEnd               string `react:"gridColumnEnd,omitempty"`
	GridColumnStart             string `react:"gridColumnStart,omitempty"`
	GridRow                     string `react:"gridRow,omitempty"`
	GridRowEnd                  string `react:"gridRowEnd,omitempty"`
	GridRowStart                string `react:"gridRowStart,omitempty"`
	GridTemplate                string `react:"gridTemplate,omitempty"`
	GridTemplateAreas           string `react:"gridTemplateAreas,omitempty"`
	GridTemplateColumns         string `react:"gridTemplateColumns,omitempty"`
	GridTemplateRows            string `react:"gridTemplateRows,omitempty"`
	HangingPunctuation          string `react:"hangingPunctuation,omitempty"`
	Height                      string `react:"height,omitempty"`
	Hyphens                     string `react:"hyphens,omitempty"`
	Icon                        string `react:"icon,omitempty"`
	ImageOrientation            string `react:"imageOrientation,omitempty"`
	ImageRendering              string `react:"imageRendering,omitempty"`
	ImageResolution             string `react:"imageResolution,omitempty"`
	ImeMode                     string `react:"imeMode,omitempty"`
	InitialLetters              string `react:"initialLetters,omitempty"`
	InitialLettersAlign         string `react:"initialLettersAlign,omitempty"`
	InitialLettersWrap          string `react:"initialLettersWrap,omitempty"`
	InlineSizing                string `react:"inlineSizing,omitempty"`
	JustifyContent              string `react:"justifyContent,omitempty"`
	JustifyItems                string `react:"justifyItems,omitempty"`
	JustifySelf                 string `react:"justifySelf,omitempty"`
	Left                        string `react:"left,omitempty"`
	LetterSpacing               string `react:"letterSpacing,omitempty"`
	LightingColor               string `react:"lightingColor,omitempty"`
	LineBreak                   string `react:"lineBreak,omitempty"`
	LineGrid                    string `react:"lineGrid,omitempty"`
	LineHeight                  string `react:"lineHeight,omitempty"`
	LineSnap                    string `react:"lineSnap,omitempty"`
	ListStyle                   string `react:"listStyle,omitempty"`
	ListStyleImage              string `react:"listStyleImage,omitempty"`
	ListStylePosition           string `react:"listStylePosition,omitempty"`
	ListStyleType               string `react:"listStyleType,omitempty"`
	Margin                      string `react:"margin,omitempty"`
	MarginBottom                string `react:"marginBottom,omitempty"`
	MarginLeft                  string `react:"marginLeft,omitempty"`
	MarginRight                 string `react:"marginRight,omitempty"`
	MarginTop                   string `react:"marginTop,omitempty"`
	MarkerSide                  string `react:"markerSide,omitempty"`
	Marks                       string `react:"marks,omitempty"`
	Mask                        string `react:"mask,omitempty"`
	MaskBox                     string `react:"maskBox,omitempty"`
	MaskBoxOutset               string `react:"maskBoxOutset,omitempty"`
	MaskBoxRepeat               string `react:"maskBoxRepeat,omitempty"`
	MaskBoxSlice                string `react:"maskBoxSlice,omitempty"`
	MaskBoxSource               string `react:"maskBoxSource,omitempty"`
	MaskBoxWidth                string `react:"maskBoxWidth,omitempty"`
	MaskClip                    string `react:"maskClip,omitempty"`
	MaskImage                   string `react:"maskImage,omitempty"`
	MaskOrigin                  string `react:"maskOrigin,omitempty"`
	MaskPosition                string `react:"maskPosition,omitempty"`
	MaskRepeat                  string `react:"maskRepeat,omitempty"`
	MaskSize                    string `react:"maskSize,omitempty"`
	MaskSourceType              string `react:"maskSourceType,omitempty"`
	MaskType                    string `react:"maskType,omitempty"`
	MaxHeight                   string `react:"maxHeight,omitempty"`
	MaxLines                    string `react:"maxLines,omitempty"`
	MaxWidth                    string `react:"maxWidth,omitempty"`
	MinHeight                   string `react:"minHeight,omitempty"`
	MinWidth                    string `react:"minWidth,omitempty"`
	MoveTo                      string `react:"moveTo,omitempty"`
	NavDown                     string `react:"navDown,omitempty"`
	NavIndex                    string `react:"navIndex,omitempty"`
	NavLeft                     string `react:"navLeft,omitempty"`
	NavRight                    string `react:"navRight,omitempty"`
	NavUp                       string `react:"navUp,omitempty"`
	ObjectFit                   string `react:"objectFit,omitempty"`
	ObjectPosition              string `react:"objectPosition,omitempty"`
	Opacity                     string `react:"opacity,omitempty"`
	Order                       string `react:"order,omitempty"`
	Orphans                     string `react:"orphans,omitempty"`
	Outline                     string `react:"outline,omitempty"`
	OutlineColor                string `react:"outlineColor,omitempty"`
	OutlineOffset               string `react:"outlineOffset,omitempty"`
	OutlineStyle                string `react:"outlineStyle,omitempty"`
	OutlineWidth                string `react:"outlineWidth,omitempty"`
	Overflow                    string `react:"overflow,omitempty"`
	OverflowWrap                string `react:"overflowWrap,omitempty"`
	OverflowX                   string `react:"overflowX,omitempty"`
	OverflowY                   string `react:"overflowY,omitempty"`
	Padding                     string `react:"padding,omitempty"`
	PaddingBottom               string `react:"paddingBottom,omitempty"`
	PaddingLeft                 string `react:"paddingLeft,omitempty"`
	PaddingRight                string `react:"paddingRight,omitempty"`
	PaddingTop                  string `react:"paddingTop,omitempty"`
	Page                        string `react:"page,omitempty"`
	PageBreakAfter              string `react:"pageBreakAfter,omitempty"`
	PageBreakBefore             string `react:"pageBreakBefore,omitempty"`
	PageBreakInside             string `react:"pageBreakInside,omitempty"`
	PagePolicy                  string `react:"pagePolicy,omitempty"`
	Pause                       string `react:"pause,omitempty"`
	PauseAfter                  string `react:"pauseAfter,omitempty"`
	PauseBefore                 string `react:"pauseBefore,omitempty"`
	Perspective                 string `react:"perspective,omitempty"`
	PerspectiveOrigin           string `react:"perspectiveOrigin,omitempty"`
	PolarAnchor                 string `react:"polarAnchor,omitempty"`
	PolarAngle                  string `react:"polarAngle,omitempty"`
	PolarDistance               string `react:"polarDistance,omitempty"`
	PolarOrigin                 string `react:"polarOrigin,omitempty"`
	Position                    string `react:"position,omitempty"`
	PresentationLevel           string `react:"presentationLevel,omitempty"`
	Quotes                      string `react:"quotes,omitempty"`
	RegionFragment              string `react:"regionFragment,omitempty"`
	Resize                      string `react:"resize,omitempty"`
	Rest                        string `react:"rest,omitempty"`
	RestAfter                   string `react:"restAfter,omitempty"`
	RestBefore                  string `react:"restBefore,omitempty"`
	Right                       string `react:"right,omitempty"`
	Rotation                    string `react:"rotation,omitempty"`
	RotationPoint               string `react:"rotationPoint,omitempty"`
	RowGap                      string `react:"rowGap,omitempty"`
	RubyAlign                   string `react:"rubyAlign,omitempty"`
	RubyMerge                   string `react:"rubyMerge,omitempty"`
	RubyPosition                string `react:"rubyPosition,omitempty"`
	ScrollPadding               string `react:"scrollPadding,omitempty"`
	ScrollPaddingBlock          string `react:"scrollPaddingBlock,omitempty"`
	ScrollPaddingBlockEnd       string `react:"scrollPaddingBlockEnd,omitempty"`
	ScrollPaddingBlockStart     string `react:"scrollPaddingBlockStart,omitempty"`
	ScrollPaddingBottom         string `react:"scrollPaddingBottom,omitempty"`
	ScrollPaddingInline         string `react:"scrollPaddingInline,omitempty"`
	ScrollPaddingInlineEnd      string `react:"scrollPaddingInlineEnd,omitempty"`
	ScrollPaddingInlineStart    string `react:"scrollPaddingInlineStart,omitempty"`
	ScrollPaddingLeft           string `react:"scrollPaddingLeft,omitempty"`
	ScrollPaddingRight          string `react:"scrollPaddingRight,omitempty"`
	ScrollPaddingTop            string `react:"scrollPaddingTop,omitempty"`
	ScrollSnapAlign             string `react:"scrollSnapAlign,omitempty"`
	ScrollSnapMargin            string `react:"scrollSnapMargin,omitempty"`
	ScrollSnapMarginBlock       string `react:"scrollSnapMarginBlock,omitempty"`
	ScrollSnapMarginBlockEnd    string `react:"scrollSnapMarginBlockEnd,omitempty"`
	ScrollSnapMarginBlockStart  string `react:"scrollSnapMarginBlockStart,omitempty"`
	ScrollSnapMarginBottom      string `react:"scrollSnapMarginBottom,omitempty"`
	ScrollSnapMarginInline      string `react:"scrollSnapMarginInline,omitempty"`
	ScrollSnapMarginInlineEnd   string `react:"scrollSnapMarginInlineEnd,omitempty"`
	ScrollSnapMarginInlineStart string `react:"scrollSnapMarginInlineStart,omitempty"`
	ScrollSnapMarginLeft        string `react:"scrollSnapMarginLeft,omitempty"`
	ScrollSnapMarginRight       string `react:"scrollSnapMarginRight,omitempty"`
	ScrollSnapMarginTop         string `react:"scrollSnapMarginTop,omitempty"`
	ScrollSnapStop              string `react:"scrollSnapStop,omitempty"`
	ScrollSnapType              string `react:"scrollSnapType,omitempty"`
	ShapeImageThreshold         string `react:"shapeImageThreshold,omitempty"`
	ShapeInside                 string `react:"shapeInside,omitempty"`
	ShapeOutside                string `react:"shapeOutside,omitempty"`
	ShapeMargin                 string `react:"shapeMargin,omitempty"`
	Size                        string `react:"size,omitempty"`
	Speak                       string `react:"speak,omitempty"`
	SpeakAs                     string `react:"speakAs,omitempty"`
	StringSet                   string `react:"stringSet,omitempty"`
	TabSize                     string `react:"tabSize,omitempty"`
	TableLayout                 string `react:"tableLayout,omitempty"`
	TextAlign                   string `react:"textAlign,omitempty"`
	TextAlignLast               string `react:"textAlignLast,omitempty"`
	TextCombineUpright          string `react:"textCombineUpright,omitempty"`
	TextDecoration              string `react:"textDecoration,omitempty"`
	TextDecorationColor         string `react:"textDecorationColor,omitempty"`
	TextDecorationLine          string `react:"textDecorationLine,omitempty"`
	TextDecorationSkip          string `react:"textDecorationSkip,omitempty"`
	TextDecorationStyle         string `react:"textDecorationStyle,omitempty"`
	TextEmphasis                string `react:"textEmphasis,omitempty"`
	TextEmphasisColor           string `react:"textEmphasisColor,omitempty"`
	TextEmphasisPosition        string `react:"textEmphasisPosition,omitempty"`
	TextEmphasisStyle           string `react:"textEmphasisStyle,omitempty"`
	TextIndent                  string `react:"textIndent,omitempty"`
	TextJustify                 string `react:"textJustify,omitempty"`
	TextOrientation             string `react:"textOrientation,omitempty"`
	TextOverflow                string `react:"textOverflow,omitempty"`
	TextShadow                  string `react:"textShadow,omitempty"`
	TextSpaceCollapse           string `react:"textSpaceCollapse,omitempty"`
	TextTransform               string `react:"textTransform,omitempty"`
	TextUnderlinePosition       string `react:"textUnderlinePosition,omitempty"`
	TextWrap                    string `react:"textWrap,omitempty"`
	TouchAction                 string `react:"touchAction,omitempty"`
	Top                         string `react:"top,omitempty"`
	Transform                   string `react:"transform,omitempty"`
	TransformOrigin             string `react:"transformOrigin,omitempty"`
	TransformStyle              string `react:"transformStyle,omitempty"`
	Transition                  string `react:"transition,omitempty"`
	TransitionDelay             string `react:"transitionDelay,omitempty"`
	TransitionDuration          string `react:"transitionDuration,omitempty"`
	TransitionProperty          string `react:"transitionProperty,omitempty"`
	TransitionTimingFunction    string `react:"transitionTimingFunction,omitempty"`
	UnicodeBidi                 string `react:"unicodeBidi,omitempty"`
	UserSelect                  string `react:"userSelect,omitempty"`
	VerticalAlign               string `react:"verticalAlign,omitempty"`
	Visibility                  string `react:"visibility,omitempty"`
	VoiceBalance                string `react:"voiceBalance,omitempty"`
	VoiceDuration               string `react:"voiceDuration,omitempty"`
	VoiceFamily                 string `react:"voiceFamily,omitempty"`
	VoicePitch                  string `react:"voicePitch,omitempty"`
	VoiceRange                  string `react:"voiceRange,omitempty"`
	VoiceRate                   string `react:"voiceRate,omitempty"`
	VoiceStress                 string `react:"voiceStress,omitempty"`
	VoiceVolume                 string `react:"voiceVolume,omitempty"`
	WhiteSpace                  string `react:"whiteSpace,omitempty"`
	Widows                      string `react:"widows,omitempty"`
	Width                       string `react:"width,omitempty"`
	WillChange                  string `react:"willChange,omitempty"`
	WordBreak                   string `react:"wordBreak,omitempty"`
	WordSpacing                 string `react:"wordSpacing,omitempty"`
	WordWrap                    string `react:"wordWrap,omitempty"`
	WrapFlow                    string `react:"wrapFlow,omitempty"`
	WrapThrough                 string `react:"wrapThrough,omitempty"`
	WritingMode                 string `react:"writingMode,omitempty"`
	ZIndex                      string `react:"zIndex,omitempty"`
}

Styles represent CSS3 attributes.

type SupProps

type SupProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

SupProps ...

type TBodyProps

type TBodyProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

TBodyProps ...

type TFootProps

type TFootProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

TFootProps ...

type THeadProps

type THeadProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

THeadProps ...

type TableProps

type TableProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

TableProps ...

type TdProps

type TdProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

TdProps ...

type TextAreaProps

type TextAreaProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`

	AutoComplete       string `react:"autoComplete,omitempty"`
	AutoFocus          *bool  `react:"autoFocus,omitempty"`
	Cols               *int   `react:"cols,omitempty"`
	DefaultValue       string `react:"defaultValue,omitempty"`
	DirName            string `react:"dirName,omitempty"`
	Disabled           *bool  `react:"disabled,omitempty"`
	MaxLength          *int   `react:"maxLength,omitempty"`
	Name               string `react:"name,omitempty"`
	Placeholder        string `react:"placeholder,omitempty"`
	ReadOnly           *bool  `react:"readOnly,omitempty"`
	Required           *bool  `react:"required,omitempty"`
	Rows               *int   `react:"rows,omitempty"`
	SelectionDirection string `react:"selectionDirection,omitempty"`
	SelectionStart     *int   `react:"selectionStart,omitempty"`
	SelectionEnd       *int   `react:"selectionEnd,omitempty"`
	TextLength         *int   `react:"textLength,omitempty"`
	Type               string `react:"type,omitempty"`
	ValidationMessage  string `react:"validationMessage,omitempty"`
	Value              string `react:"value,omitempty"`
	WillValidate       *bool  `react:"willValidate,omitempty"`
	Wrap               string `react:"wrap,omitempty"`
}

TextAreaProps ...

type ThProps

type ThProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`

	Abbr    string `react:"abbr,omitempty"`
	ColSpan *int   `react:"colSpan,omitempty"`
	Headers string `react:"headers,omitempty"`
	RowSpan *int   `react:"rowSpan,omitempty"`
	Scope   string `react:"scope,omitempty"`
	Sorted  string `react:"sorted,omitempty"`
}

ThProps ...

type TrProps

type TrProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

TrProps ...

type UlProps

type UlProps struct {
	AriaSet                 react.Set   `react:"aria-,omitempty"`
	DataSet                 react.Set   `react:"data-,omitempty"`
	DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`
	Accesskey               string      `react:"accesskey,omitempty"`
	Class                   string      `react:"className,omitempty"`
	Contenteditable         *bool       `react:"contenteditable,omitempty"`
	Dir                     string      `react:"dir,omitempty"`
	Draggable               *bool       `react:"draggable,omitempty"`
	Dropzone                string      `react:"dropzone,omitempty"`
	Hidden                  *bool       `react:"hidden,omitempty"`
	ID                      string      `react:"id,omitempty"`
	Lang                    string      `react:"lang,omitempty"`
	SpellCheck              *bool       `react:"spellcheck,omitempty"`
	TabIndex                string      `react:"tabindex,omitempty"`
	Title                   string      `react:"title,omitempty"`

	Key   string     `react:"key,omitempty"`
	Ref   *js.Object `react:"ref,omitempty"`
	Role  string     `react:"role,omitempty"`
	Style *Styles    `react:"style,omitempty"`

	// Events
	OnBlur   *js.Object `react:"onBlur,omitempty"`
	OnFocus  *js.Object `react:"onFocus,omitempty"`
	OnChange *js.Object `react:"onChange,omitempty"`
	OnClick  *js.Object `react:"onClick,omitempty"`
}

UlProps ...

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL