Sha256: e88fbee67198e4dd4949c2b2163d84737b71cb2a0f1851444a1704d8070afb02
Contents?: true
Size: 1.3 KB
Versions: 10
Compression:
Stored size: 1.3 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 | Function}, id?: string, size?: "sm" | "md" | "lg", } const UserBadge = (props: UserBadgeProps) => { 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
10 entries across 10 versions & 1 rubygems