@carbon/react
Version:
React components for the Carbon Design System
16 lines (15 loc) • 435 B
TypeScript
/**
* Copyright IBM Corp. 2021
*
* 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 React from 'react';
interface SideNavDividerProps {
/**
* Provide an optional class to be applied to the containing node
*/
className?: string;
}
declare const SideNavDivider: React.FC<SideNavDividerProps>;
export default SideNavDivider;