VisualEdgeSides:
    | false
    | true
    | "all"
    | "vertical"
    | "horizontal"
    | { bottom?: boolean; left?: boolean; right?: boolean; top?: boolean }

Defines the application of padding computation for visual edge insets for the applyVisualEdgeInsets Svelte action. For absolute positioning any truthy value enables application of visual edge insets.

- `false` - Disabled
- `true` or `'all'` - Enabled / all sides.
- `'horizontal'` - Left and right sides.
- `'vertical'` - Top and bottom sides.
- `object` - Customizable sides with boolean properties for: `top`, `right`, `bottom`, `left`.