# `Surface.AST.VoidTag`
[🔗](https://github.com/surface-ui/surface/blob/v0.12.3/lib/surface/ast.ex#L400)

An AST node representing a void (empty) HTML tag

## Properties
    * `:element` - the element name
    * `:attributes` - the attributes for this tag
    * `:directives` - any directives to be applied to this tag
    * `:meta` - compilation meta data
    * `:debug` - keyword list indicating when debug information should be printed during compilation

# `t`
[🔗](https://github.com/surface-ui/surface/blob/v0.12.3/lib/surface/ast.ex#L413)

```elixir
@type t() :: %Surface.AST.VoidTag{
  attributes: [Surface.AST.Attribute.t() | Surface.AST.DynamicAttribute.t()],
  debug: [atom()],
  directives: [Surface.AST.Directive.t()],
  element: binary(),
  meta: Surface.AST.Meta.t()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
