diff --git a/website/src/ui/Icon.js b/website/src/ui/Icon.js
index cda7766..d8f6a04 100644
--- a/website/src/ui/Icon.js
+++ b/website/src/ui/Icon.js
@@ -31,7 +31,6 @@ export class Icon extends Component {
logout: require("./icons/logout.svg"),
profile: require("./icons/profile.svg"),
placeholder: require("./icons/placeholder.svg"),
- system: require("./icons/system.svg"),
thumb: require("./icons/thumb.svg"),
team: require("./icons/team.svg"),
teams: require("./icons/teams.svg"),
diff --git a/website/src/ui/PanelButton.js b/website/src/ui/PanelButton.js
deleted file mode 100644
index c50e9e4..0000000
--- a/website/src/ui/PanelButton.js
+++ /dev/null
@@ -1,65 +0,0 @@
-import Radium from 'radium'
-import PropTypes from 'prop-types'
-import React, { Component } from 'react'
-import { Icon } from '.'
-import { sizeInfo, fontInfo, colorInfo } from 'ui/style'
-
-@Radium
-export class PanelButton extends Component {
- static propTypes = {
- onClick: PropTypes.func,
- icon: PropTypes.string.isRequired,
- text: PropTypes.string.isRequired,
- }
-
- static style = {
- button: {
- borderWidth: sizeInfo.panelButtonBorderWidth,
- borderRadius: sizeInfo.panelButtonBorderRadius,
- padding: '0 0 0 0',
- background: colorInfo.panelButtonBackground,
- verticalAlign: 'middle',
- outline: 'none',
- ':hover': {
- background: colorInfo.panelButtonBackgroundHover,
- },
- ':disabled': {
- background: colorInfo.panelDisabledButtonBackground,
- },
- ':active': {
- borderWidth: 0,
- background: colorInfo.panelButtonBackgroundActive,
- }
- }
- }
-
- render() {
- const { onClick, icon, text } = this.props
-
- return (
-
- )
- }
-}
diff --git a/website/src/ui/icons/system.svg b/website/src/ui/icons/system.svg
deleted file mode 100644
index 9380d82..0000000
--- a/website/src/ui/icons/system.svg
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
\ No newline at end of file
diff --git a/website/src/ui/index.js b/website/src/ui/index.js
index ce4195a..03f4741 100644
--- a/website/src/ui/index.js
+++ b/website/src/ui/index.js
@@ -4,7 +4,6 @@ export { Button } from "./Button"
export { FormIconButton } from "./FormIconButton"
export { Header } from "./Header"
export { Footer } from "./Footer"
-export { PanelButton } from "./PanelButton"
export { Checkbox } from "./Checkbox"
export { Input } from "./Input"
export { Image } from "./Image"