semantic-ui-react
Version:
The official Semantic-UI-React integration.
31 lines (23 loc) • 872 B
JavaScript
import cx from 'clsx'
import PropTypes from 'prop-types'
import React from 'react'
import { getElementType, getUnhandledProps } from '../../lib'
/**
* A placeholder can contain have lines of text.
*/
function PlaceholderLine(props) {
const { className, length } = props
const classes = cx('line', length, className)
const rest = getUnhandledProps(PlaceholderLine, props)
const ElementType = getElementType(PlaceholderLine, props)
return <ElementType {...rest} className={classes} />
}
PlaceholderLine.propTypes = {
/** An element type to render as (string or function). */
as: PropTypes.elementType,
/** Additional classes. */
className: PropTypes.string,
/** A line can specify how long its contents should appear. */
length: PropTypes.oneOf(['full', 'very long', 'long', 'medium', 'short', 'very short']),
}
export default PlaceholderLine