Files
SCM-Manager/scm-ui-components/packages/ui-components/src/navigation/NavAction.js

28 lines
477 B
JavaScript
Raw Normal View History

//@flow
import React from "react";
type Props = {
2018-12-21 13:41:34 +01:00
icon?: string,
label: string,
action: () => void
};
class NavAction extends React.Component<Props> {
render() {
2018-12-21 13:41:34 +01:00
const { label, icon, action } = this.props;
let showIcon = null;
if (icon) {
showIcon = (<><i className={icon}></i>{" "}</>);
}
return (
<li>
2019-01-23 17:52:59 +01:00
<a onClick={action} href="javascript:void(0);">{showIcon}{label}</a>
</li>
);
}
}
export default NavAction;