UNPKG

wix-style-react

Version:
17 lines 698 B
export default SidebarDivider; /** A divider within the sidebar that supports inner and full mode */ declare class SidebarDivider extends React.PureComponent<any, any, any> { static displayName: string; static propTypes: { /** Applied as data-hook HTML attribute that can be used in the tests */ dataHook: PropTypes.Requireable<string>; /** Indicates whether to remove the margin from sides */ fullWidth: PropTypes.Requireable<boolean>; }; constructor(props: any); constructor(props: any, context: any); render(): React.JSX.Element; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=SidebarDivider.d.ts.map