CssStrokeWidthProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke-width
Gets the value that should be used for the stroke-width.
using AngleSharp.Css;
namespace AngleSharp.Dom.Css
{
internal sealed class CssStrokeWidthProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.LengthOrPercentConverter;
internal override IValueConverter Converter => StyleConverter;
internal CssStrokeWidthProperty()
: base(PropertyNames.StrokeWidth, PropertyFlags.Animatable)
{
}
}
}