mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
16 lines
427 B
TypeScript
16 lines
427 B
TypeScript
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 LabSquare: FC<IProps> = ({ children, ...rest }) => (
|
|
<div className={styles.square}>
|
|
<div {...rest} className={classNames(styles.content, rest.className)}>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
export { LabSquare };
|