import * as React from 'react';

export interface SidebarDividerProps {
  /** Applied as data-hook HTML attribute that can be used in the tests */
  dataHook?: string;
  /** Indicates whether to remove the margin from sides */
  fullWidth?: boolean;
}

export default class SidebarDivider extends React.PureComponent<SidebarDividerProps> {}
