mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
6 lines
243 B
TypeScript
6 lines
243 B
TypeScript
import React, { HTMLAttributes } from 'react';
|
|
import styles from './styles.module.scss';
|
|
|
|
type IProps = HTMLAttributes<HTMLDivElement> & {};
|
|
|
|
export const ButtonGroup = ({ children }: IProps) => <div className={styles.wrap}>{children}</div>;
|