1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 05:16:41 +07:00

fixed eslint warnings

This commit is contained in:
Fedor Katurov 2022-01-07 19:06:57 +07:00
parent 58fa40dd5c
commit ba2e610e01
16 changed files with 82 additions and 585 deletions

View file

@ -1,6 +1,6 @@
import React, { FC } from "react";
import styles from "./styles.module.scss";
import { Icon } from "~/components/input/Icon";
import React, { FC } from 'react';
import styles from './styles.module.scss';
import { Icon } from '~/components/input/Icon';
interface Props {
icon: string;
@ -10,7 +10,7 @@ interface Props {
}
const BorisContactItem: FC<Props> = ({ icon, title, subtitle, link }) => (
<a className={styles.item} href={link} target="_blank">
<a className={styles.item} href={link} target="_blank" rel="noreferrer">
<div className={styles.icon}>
<Icon icon={icon} size={32} />
</div>