@wix/design-system
Version:
@wix/design-system
11 lines (8 loc) • 341 B
TypeScript
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> {}