using UnityEngine.UIElements;

namespace GameCreator.Editor.Common
{
    public class SpaceSmall : VisualElement
    {
        public SpaceSmall()
        {
            this.style.height = new StyleLength(10);
        }
    }
}