From ee31b29c967e8663701df2f9a8521475580afcbe Mon Sep 17 00:00:00 2001 From: KDSBrowne Date: Tue, 4 Apr 2017 09:49:01 -0700 Subject: [PATCH] add styles for separator --- .../ui/components/dropdown/list/separator/component.jsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bigbluebutton-html5/imports/ui/components/dropdown/list/separator/component.jsx b/bigbluebutton-html5/imports/ui/components/dropdown/list/separator/component.jsx index ccc26fc453..d5c7a66a92 100755 --- a/bigbluebutton-html5/imports/ui/components/dropdown/list/separator/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/dropdown/list/separator/component.jsx @@ -1,8 +1,10 @@ -import React, { Component } from 'react'; +import React, { Component, PropTypes } from 'react'; import styles from '../styles'; +import cx from 'classnames'; export default class DropdownListSeparator extends Component { render() { - return
  • ; + const { style, className } = this.props; + return
  • ; } }