@base-ui/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.
29 lines (27 loc) • 927 B
JavaScript
'use client';
import * as React from 'react';
import { useSwitchRootContext } from "../root/SwitchRootContext.js";
import { useRenderElement } from "../../internals/useRenderElement.js";
import { stateAttributesMapping } from "../stateAttributesMapping.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)
*/
export const SwitchThumb = /*#__PURE__*/React.forwardRef(function SwitchThumb(componentProps, forwardedRef) {
const {
render,
className,
style,
...elementProps
} = componentProps;
const state = useSwitchRootContext();
return useRenderElement('span', componentProps, {
state,
ref: forwardedRef,
stateAttributesMapping,
props: elementProps
});
});
if (process.env.NODE_ENV !== "production") SwitchThumb.displayName = "SwitchThumb";