Sha256: e21b321e5afcdb0f583c7bcb4d43f82519787cea24e03ce4fb6264191d34c666
Contents?: true
Size: 1.32 KB
Versions: 10
Compression:
Stored size: 1.32 KB
Contents
/* @flow */ import React from 'react' import classnames from 'classnames' import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from '../utilities/props' import { globalProps } from '../utilities/globalProps' type ButtonToolbarProps = { aria?: {[key: string]: string}, children?: React.ReactChild[] | React.ReactChild, className?: string, connected?: boolean, data?: object, htmlOptions?: {[key: string]: string | number | boolean | Function}, id?: string, onClick?: React.MouseEventHandler<HTMLSpanElement>, orientation?: "horizontal" | "vertical", text?: string, variant?: "primary" | "secondary", } const ButtonToolbar = (props: ButtonToolbarProps) => { const { aria = {}, children, className, data = {}, htmlOptions = {}, id, orientation = 'horizontal', text, variant = 'primary', } = props const ariaProps = buildAriaProps(aria) const dataProps = buildDataProps(data) const htmlProps = buildHtmlProps(htmlOptions) const classes = classnames( buildCss('pb_button_toolbar_kit', orientation, variant), globalProps(props), className ) return ( <div {...ariaProps} {...dataProps} {...htmlProps} className={classes} id={id} > {children || text} </div> ) } export default ButtonToolbar
Version data entries
10 entries across 10 versions & 1 rubygems