diff --git a/ui/component/common/input-radio-panel.jsx b/ui/component/common/input-radio-panel.jsx deleted file mode 100644 index a64d0a084..000000000 --- a/ui/component/common/input-radio-panel.jsx +++ /dev/null @@ -1,39 +0,0 @@ -// @flow -import React from 'react'; -import * as ICONS from 'constants/icons'; -import Button from 'component/button'; -import classnames from 'classnames'; - -type Props = { - onClick: (CommentServerDetails) => void, - onRemove?: (CommentServerDetails) => void, - active: boolean, - serverDetails: CommentServerDetails, -}; - -const InputTogglePanel = (props: Props) => { - const { onClick, active, serverDetails, onRemove } = props; - - return ( -