import * as React from 'react'; import Octicon, { Eye } from '@githubprimer/octicons-react'; interface IButtonEye { url: string; host?: string; } export default class ButtonEye extends React.PureComponent { private getUrl(url, host) { return host ? `${host}${url}` : url; } public render() { return (
); } }