The Separator component is a simple horizontal or vertical line that can be used to visually separate content in your application.
## Component Structure
```rust
// The Separator component can be oriented horizontally or vertically.
Separator {
// The orientation of the separator line. true for horizontal, false for vertical.
horizontal: true,
// The decorative property controls if the separator is decorative and should not be visible to screen readers.
decorative: false,
}
```