UNPKG

@carbon/react

Version:

React components for the Carbon Design System

24 lines (23 loc) 679 B
/** * Copyright IBM Corp. 2021, 2025 * * 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 PropTypes from 'prop-types'; interface SideNavDividerProps { /** * Provide an optional class to be applied to the containing node */ className?: string; } declare const SideNavDivider: { ({ className }: SideNavDividerProps): import("react/jsx-runtime").JSX.Element; propTypes: { /** * Provide an optional class to be applied to the containing node */ className: PropTypes.Requireable<string>; }; }; export default SideNavDivider;