Sha256: dc09b9b94e9f178930c71e4d1a98f189660a5c2bfe8c85095ed942e6dbe42668
Contents?: true
Size: 1.08 KB
Versions: 10
Compression:
Stored size: 1.08 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 | Function}, id?: string, status?: "online" | "offline" | "away", } & 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
10 entries across 10 versions & 1 rubygems