components

This commit is contained in:
Tatiana Nikolaeva 2025-04-04 21:41:22 +05:00
commit 009a214b40
40 changed files with 966 additions and 0 deletions

View file

@ -0,0 +1,16 @@
import React from 'react';
import styles from './Account.module.css'
interface AccountProps {
href: string
}
const Account: React.FC<AccountProps> = ({href}) => {
return (
<a className={styles.account} href={href}>
<img src='../../../public/account.svg' alt='Личный кабинет'/>
</a>
);
};
export default Account;