Sha256: 58706e6a068fbeebda59252becd547c064a58c44f001e153d5e1a435ba742d37
Contents?: true
Size: 1.04 KB
Versions: 11
Compression:
Stored size: 1.04 KB
Contents
import React from 'react' import classnames from 'classnames' import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from '../utilities/props' import { globalProps } from '../utilities/globalProps' type FormGroupProps = { aria?: {[key: string]: string}, children?: Node, className?: string, data?: object, fullWidth?: boolean, htmlOptions?: {[key: string]: string | number | boolean | (() => void)}, id?: string, } const FormGroup = (props: FormGroupProps) => { const { aria = {}, className, data = {}, fullWidth = false, htmlOptions = {}, id, children, } = props const ariaProps = buildAriaProps(aria) const dataProps = buildDataProps(data) const htmlProps = buildHtmlProps(htmlOptions) const classes = classnames(buildCss('pb_form_group_kit', { full: fullWidth }), globalProps(props), className) return ( <div {...ariaProps} {...dataProps} {...htmlProps} className={classes} id={id} > {children} </div> ) } export default FormGroup
Version data entries
11 entries across 11 versions & 1 rubygems