mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
import React, { HTMLAttributes } from 'react';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import styles from './styles.module.scss';
|
|
|
|
type IProps = HTMLAttributes<HTMLDivElement> & {};
|
|
|
|
export const ButtonGroup = ({ children, className }: IProps) => (
|
|
<div className={classNames(styles.wrap, className)}>{children}</div>
|
|
);
|