Sha256: 2a410a43eee6c1bbea322853bbb2bd102b6b1a4ad6b859b40042783d8370c414
Contents?: true
Size: 1.34 KB
Versions: 465
Compression:
Stored size: 1.34 KB
Contents
import React from 'react' import classnames from 'classnames' import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from '../utilities/props' import { globalProps } from '../utilities/globalProps' import Veteran from './badges/veteran' import MillionDollar from './badges/million-dollar'; type UserBadgeProps = { aria?: {[key: string]: string}, badge?: "million-dollar" | "veteran", className?: string, data?: {[key: string]: string}, htmlOptions?: {[key: string]: string | number | boolean | (() => void)}, id?: string, size?: "sm" | "md" | "lg", } const UserBadge = (props: UserBadgeProps): React.ReactElement => { const { aria = {}, badge = 'million-dollar', className, data = {}, htmlOptions = {}, id, size = 'md', } = props const image = badge === "million-dollar" ? <MillionDollar /> : <Veteran /> const ariaProps = buildAriaProps(aria) const dataProps = buildDataProps(data) const htmlProps = buildHtmlProps(htmlOptions) const classes = classnames( buildCss('pb_user_badge_kit', size), globalProps(props), className ) return ( <div {...ariaProps} {...dataProps} {...htmlProps} className={classes} id={id} > <div className="pb_user_badge_wrapper"> {image} </div> </div> ) } export default UserBadge
Version data entries
465 entries across 465 versions & 1 rubygems