1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

added boris lab image

This commit is contained in:
Fedor Katurov 2021-10-29 16:52:35 +07:00
parent 4ff1c08990
commit 3f16ab203e
6 changed files with 1390 additions and 760 deletions

View file

@ -0,0 +1,16 @@
import React, { FC } from 'react';
import styles from './styles.module.scss';
import { DivProps } from '~/utils/types';
import classNames from 'classnames';
interface IProps extends DivProps {}
const Square: FC<IProps> = ({ children, ...rest }) => (
<div className={styles.square}>
<div {...rest} className={classNames(styles.content, rest.className)}>
{children}
</div>
</div>
);
export { Square };