filter controls

This commit is contained in:
Jan Prochazka
2020-03-12 08:02:13 +01:00
parent 8da0c359ff
commit 8f6b211b1b
7 changed files with 563 additions and 13 deletions

View File

@@ -39,6 +39,12 @@ const StyledLink = styled.a`
}
`;
export const DropDownMenuDivider = styled.li`
margin: 9px 0px 9px 0px;
border-top: 1px solid #f2f2f2;
border-bottom: 1px solid #fff;
`;
export function DropDownMenuItem({ children, keyText = undefined, onClick }) {
const handleMouseEnter = () => {
// if (this.context.parentMenu) this.context.parentMenu.closeSubmenu();
@@ -90,7 +96,7 @@ export function DropDownMenuItem({ children, keyText = undefined, onClick }) {
// // }
// export function DropDownMenuDivider(props: {}) {
// return <li className="dropdown-divider"></li>;
// return <li className="dropdown-divider"></li>;
// }
// export class DropDownSubmenuItem extends React.Component<IDropDownSubmenuItemProps> {