UNPKG

@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.

64 lines (62 loc) 2.37 kB
'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import { useSwitchRootContext } from '../root/SwitchRootContext.js'; import { useComponentRenderer } from '../../utils/useComponentRenderer.js'; import { useFieldRootContext } from '../../field/root/FieldRootContext.js'; import { styleHookMapping } from '../styleHooks.js'; /** * The movable part of the switch that indicates whether the switch is on or off. * Renders a `<span>`. * * Documentation: [Base UI Switch](https://base-ui.com/react/components/switch) */ const SwitchThumb = /*#__PURE__*/React.forwardRef(function SwitchThumb(props, forwardedRef) { const { render, className, ...other } = props; const { state: fieldState } = useFieldRootContext(); const state = useSwitchRootContext(); const extendedState = { ...fieldState, ...state }; const { renderElement } = useComponentRenderer({ render: render || 'span', className, state: extendedState, extraProps: other, customStyleHookMapping: styleHookMapping, ref: forwardedRef }); return renderElement(); }); process.env.NODE_ENV !== "production" ? SwitchThumb.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 { SwitchThumb };