Files
SCM-Manager/scm-ui-components/packages/ui-components/src/navigation/NavAction.js
Philipp Czora d28aa79a5d Merged 2.0.0-m3
2019-01-23 17:52:59 +01:00

28 lines
477 B
JavaScript

//@flow
import React from "react";
type Props = {
icon?: string,
label: string,
action: () => void
};
class NavAction extends React.Component<Props> {
render() {
const { label, icon, action } = this.props;
let showIcon = null;
if (icon) {
showIcon = (<><i className={icon}></i>{" "}</>);
}
return (
<li>
<a onClick={action} href="javascript:void(0);">{showIcon}{label}</a>
</li>
);
}
}
export default NavAction;