@coreui/react
Version:
CoreUI React 17 Bootstrap 4 components
42 lines (33 loc) • 923 B
JavaScript
import React from 'react'
import PropTypes from 'prop-types'
import classNames from 'classnames'
import { tagPropType } from './helper.js'
import CLink from '../link/CLink'
//component - CoreUI / CBrand
const CBrand = props => {
const {
tag,
className,
//
innerRef,
...attributes
} = props
//render
const classes = classNames(className)
const Tag = attributes.to || attributes.href ? CLink : tag
const ref = { [`${typeof Tag === 'string' ? 'ref': 'innerRef'}`]: innerRef}
return (
<Tag className={classes} {...attributes} {...ref} />
)
}
CBrand.propTypes = {
tag: tagPropType,
children: PropTypes.node,
className: PropTypes.oneOfType([PropTypes.string, PropTypes.array, PropTypes.object]),
//
innerRef: PropTypes.oneOfType([PropTypes.object, PropTypes.func])
};
CBrand.defaultProps = {
tag: 'div'
};
export default CBrand