Sha256: ce1590354e06c98aec2837ab952ec1bc056515ef0f3bf68fcb7716b021165b10
Contents?: true
Size: 1.35 KB
Versions: 480
Compression:
Stored size: 1.35 KB
Contents
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?: {[key: string]: string}, htmlOptions?: {[key: string]: string | number | boolean | (() => void)}, id?: string, onClick?: React.MouseEventHandler<HTMLSpanElement>, orientation?: "horizontal" | "vertical", text?: string, variant?: "primary" | "secondary", } const ButtonToolbar = (props: ButtonToolbarProps): React.ReactElement => { 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
480 entries across 480 versions & 1 rubygems