@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
61 lines (59 loc) • 2.27 kB
JavaScript
'use client';
import * as React from 'react';
import PropTypes from 'prop-types';
import { useComponentRenderer } from '../../utils/useComponentRenderer.js';
import { mergeReactProps } from '../../utils/mergeReactProps.js';
/**
* An icon that indicates that the trigger button opens a select menu.
* Renders a `<span>` element.
*
* Documentation: [Base UI Select](https://base-ui.com/react/components/select)
*/
const SelectIcon = /*#__PURE__*/React.forwardRef(function SelectIcon(props, forwardedRef) {
const {
className,
render,
...otherProps
} = props;
const state = React.useMemo(() => ({}), []);
const getIconProps = React.useCallback(externalProps => {
return mergeReactProps(externalProps, {
'aria-hidden': true,
children: '▼'
});
}, []);
const {
renderElement
} = useComponentRenderer({
propGetter: getIconProps,
render: render ?? 'span',
ref: forwardedRef,
className,
state,
extraProps: otherProps
});
return renderElement();
});
process.env.NODE_ENV !== "production" ? SelectIcon.propTypes /* remove-proptypes */ = {
// ┌────────────────────────────── Warning ──────────────────────────────┐
// │ These PropTypes are generated from the TypeScript type definitions. │
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* @ignore
*/
children: PropTypes.node,
/**
* CSS class applied to the element, or a function that
* returns a class based on the component’s state.
*/
className: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
/**
* Allows you to replace the component’s HTML element
* with a different tag, or compose it with another component.
*
* Accepts a `ReactElement` or a function that returns the element to render.
*/
render: PropTypes.oneOfType([PropTypes.element, PropTypes.func])
} : void 0;
export { SelectIcon };