@uifabric/experiments
Version:
Experimental React components for building experiences for Office 365.
9 lines (8 loc) • 317 B
TypeScript
/// <reference types="react" />
import { BaseComponent } from '../../Utilities';
import { ISeparatorProps } from './Separator.types';
export declare class SeparatorBase extends BaseComponent<ISeparatorProps, {}> {
private _classNames;
constructor(props: ISeparatorProps);
render(): JSX.Element;
}