Sha256: 7ee98f13bec4b4b4e042cab966152d12c202dd14584d1b6e6ad41caef3d5ba98
Contents?: true
Size: 1.13 KB
Versions: 83
Compression:
Stored size: 1.13 KB
Contents
import React from 'react' import classnames from 'classnames' import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from '../utilities/props' import { globalProps } from '../utilities/globalProps' type ListItemProps = { aria?: { [key: string]: string }, children: React.ReactNode[] | React.ReactNode, className?: string, data?: Record<string, unknown>, htmlOptions?: {[key: string]: string | number | boolean | (() => void)}, id?: string, tabIndex?: number, } const ListItem = (props: ListItemProps) => { const { aria = {}, children, className, data = {}, htmlOptions = {}, id, tabIndex, } = props const ariaProps = buildAriaProps(aria) const dataProps = buildDataProps(data) const htmlProps = buildHtmlProps(htmlOptions) const classes = classnames( buildCss('pb_item_kit'), globalProps(props), className ) return ( <> <li {...ariaProps} {...dataProps} {...htmlProps} className={classes} id={id} tabIndex={tabIndex} > {children} </li> </> ) } export default ListItem
Version data entries
83 entries across 83 versions & 1 rubygems