File size: 296 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Children } from 'react';

const ButtonRow = ( { children } ) => {
	const className =
		Children.count( children ) === 1
			? 'guided-tours__single-button-row'
			: 'guided-tours__choice-button-row';

	return <div className={ className }>{ children }</div>;
};

export default ButtonRow;