public void Be_Creatable(IconChar icon)
        {
            var button = new IconButton {
                IconChar = icon
            };

            button.Should().NotBeNull();
            button.IconChar.Should().Be(icon);
        }