mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00
8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
import { FunctionComponent, h } from "preact";
|
|
import style from "./ButtonSet.module.scss";
|
|
|
|
export const ButtonSet: FunctionComponent = (props) => {
|
|
return <div className={style.buttonSet}>
|
|
{props.children}
|
|
</div>;
|
|
} |