2  * Angular Material Design
 
   3  * https://github.com/angular/material
 
   7 goog.provide('ngmaterial.components.divider');
 
   8 goog.require('ngmaterial.core');
 
  11  * @name material.components.divider
 
  12  * @description Divider module!
 
  14 MdDividerDirective['$inject'] = ["$mdTheming"];
 
  15 angular.module('material.components.divider', [
 
  18   .directive('mdDivider', MdDividerDirective);
 
  23  * @module material.components.divider
 
  27  * Dividers group and separate content within lists and page layouts using strong visual and spatial distinctions. This divider is a thin rule, lightweight enough to not distract the user from content.
 
  29  * @param {boolean=} md-inset Add this attribute to activate the inset divider style.
 
  32  * <md-divider></md-divider>
 
  34  * <md-divider md-inset></md-divider>
 
  38 function MdDividerDirective($mdTheming) {
 
  45 ngmaterial.components.divider = angular.module("material.components.divider");