mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 13:27:21 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			269 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			269 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
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>;
 | 
						|
}
 |