// Copyright 2015-2018 Parity Technologies (UK) Ltd. // This file is part of Parity. // // SPDX-License-Identifier: BSD-3-Clause import React from 'react'; import { Popup } from 'semantic-ui-react'; import 'semantic-ui-css/components/popup.min.css'; export const Field = ({ as: T = 'input', children, input, label, meta, ...otherProps }) => (
} /> {children}
);