owncast/web/components/action-buttons/ActionButtonRow.tsx

13 lines
269 B
TypeScript
Raw Normal View History

2022-05-08 01:13:06 +02:00
import React from 'react';
import s from './ActionButtons.module.scss';
interface Props {
children: React.ReactNode[];
}
export default function ActionButtonRow(props: Props) {
const { children } = props;
return <div className={`${s.row}`}>{children}</div>;
}