UNPKG

@jupyter-notebook/web-components

Version:

A component library for building extensions in Jupyter frontends.

25 lines (24 loc) 734 B
// Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. import { Divider, dividerTemplate as template } from '@microsoft/fast-foundation'; import { dividerStyles as styles } from '@microsoft/fast-components'; /** * A function that returns a {@link @microsoft/fast-foundation#Divider} registration for configuring the component with a DesignSystem. * Implements {@link @microsoft/fast-foundation#dividerTemplate} * * * @public * @remarks * Generates HTML Element: `<jp-divider>` */ export const jpDivider = Divider.compose({ baseName: 'divider', template, styles }); /** * Base class for Divider * @public */ export { Divider }; export { styles as dividerStyles };