Sha256: 4fefb547e93d71a4b6d68320d67a99834ce21df6af0676715bd570d58add489b
Contents?: true
Size: 1.6 KB
Versions: 480
Compression:
Stored size: 1.6 KB
Contents
import React from 'react' import classnames from 'classnames' import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from '../utilities/props' import { globalProps } from '../utilities/globalProps' import Body from '../pb_body/_body' import Title from '../pb_title/_title' type TitleCountProps = { align: "center" | "left" | "right", aria?: { [key: string]: string }, className?: string, count?: number, dark?: boolean, data?: { [key: string]: string }, htmlOptions?: {[key: string]: string | number | boolean | (() => void)}, id?: string, title?: string, size?: "lg" | "sm", }; const TitleCount = (props: TitleCountProps): React.ReactElement => { const { align = 'left', aria = {}, className, dark = false, data = {}, htmlOptions = {}, count, id, title, size = 'sm' } = props const ariaProps = buildAriaProps(aria) const dataProps = buildDataProps(data) const htmlProps = buildHtmlProps(htmlOptions) const css = classnames( buildCss('pb_title_count_kit', align, size), globalProps(props), className ) const formatCount = count.toLocaleString() return ( <div {...ariaProps} {...dataProps} {...htmlProps} className={css} id={id} > <Title className={title !== undefined ? 'pb_title_count_text' : ''} dark={dark} size={size === 'lg' ? 3 : 4} text={title} /> <Body color="light" dark={dark} > {count && formatCount } </Body> </div> ) } export default TitleCount
Version data entries
480 entries across 480 versions & 1 rubygems