// ----- CONFIG: $UI.Divider

$this = merge({
  heights: {
    m: 1px,
    l: 2px
  }
}, $UI.Divider, true)

// ----- COMPONENT

_bg = $UI.colors.darkLighter

.root
  background-color _bg

  &.horizontal
    width 100%

  &.vertical
    height 100%

// ----- JS EXPORTS

:export
  config: $this
