@carbon/react
Version:
React components for the Carbon Design System
45 lines (41 loc) • 1.13 kB
JavaScript
/**
* Copyright IBM Corp. 2016, 2023
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import cx from 'classnames';
import PropTypes from 'prop-types';
import React from 'react';
import { usePrefix } from '../../internal/usePrefix.js';
const SideNavIcon = ({
children,
className: customClassName,
small = false
}) => {
const prefix = usePrefix();
const className = cx({
[`${prefix}--side-nav__icon`]: true,
[`${prefix}--side-nav__icon--small`]: small,
[customClassName]: !!customClassName
});
return /*#__PURE__*/React.createElement("div", {
className: className
}, children);
};
SideNavIcon.propTypes = {
/**
* Provide a single icon as the child to `SideNavIcon` to render in the
* container
*/
children: PropTypes.node.isRequired,
/**
* Provide an optional class to be applied to the containing node
*/
className: PropTypes.string,
/**
* Specify whether the icon should be placed in a smaller bounding box
*/
small: PropTypes.bool
};
export { SideNavIcon as default };