Small GUILayout button

I’m creating an editor window. EditorGUILayout doesn’t have it’s button, so i’m using GUILayout button. the problem is, this button is streched on whole window. can i make a small button without using GUI.Button(Rect(…))?

I finally managed to do this. I use this kind of thing:

GUILayout.BeginHorizontal();
GUILayout.Space(30);
GUILayout.Button("label");
GUILayout.Space(30);
GUILayout.EndHorizontal();