// THIS FILE IS PART OF SVG PROJECT
// THE SVG PROJECT IS AN OPENSOURCE LIBRARY LICENSED UNDER THE MS-PL License.
// COPYRIGHT (C) svg-net. ALL RIGHTS RESERVED.
// GITHUB: https://github.com/svg-net/SVG
namespace AntdUI.Svg
{
///
/// Represents a list of re-usable SVG components.
///
public class SvgDefinitionList : SvgElement
{
public override string ClassName { get => "defs"; }
///
/// Initializes a new instance of the class.
///
public SvgDefinitionList()
{
}
///
/// Renders the and contents to the specified object.
///
/// The object to render to.
protected override void Render(ISvgRenderer renderer)
{
// Do nothing. Children should NOT be rendered.
}
}
}