Sha256: 0e639c5d499216caaa428bdb0136f8a45276bf599547173b5f34e5ac268afc2e
Contents?: true
Size: 1.14 KB
Versions: 98
Compression:
Stored size: 1.14 KB
Contents
import React from 'react' import classnames from 'classnames' import { GlobalProps, globalProps } from '../utilities/globalProps' import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from '../utilities/props' type OnlineStatusProps = { aria?: {[key: string]: string}, className?: string, data?: {[key: string]: string | number}, htmlOptions?: {[key: string]: string | number | boolean | (() => void)}, id?: string, status?: "away" | "error" | "info" | "neutral" | "offline" |"online" | "primary"| "success" | "warning", } & GlobalProps const OnlineStatus = (props: OnlineStatusProps) => { const { aria = {}, className, data = {}, htmlOptions = {}, id, status = 'offline', } = props aria.label = status const ariaProps = buildAriaProps(aria) const dataProps = buildDataProps(data) const htmlProps = buildHtmlProps(htmlOptions) const classes = classnames(buildCss('pb_online_status_kit', status), globalProps(props), className) return ( <div {...ariaProps} {...dataProps} {...htmlProps} className={classes} id={id} /> ) } export default OnlineStatus
Version data entries
98 entries across 98 versions & 1 rubygems