MinimumInteractiveLeftAlignmentLine
The vertical [AlignmentLine] that marks the _left_ of the space added by
MinimumInteractiveLeftAlignmentLine
val MinimumInteractiveLeftAlignmentLine = VerticalAlignmentLine(::min)
The vertical AlignmentLine that marks the left of the space added by
Modifier.minimumInteractiveComponentSize to meet minimum touch target requirements.
When a component is smaller than the minimum interactive size (e.g., a 24.dp icon),
Modifier.minimumInteractiveComponentSize expands its layout space to at least 48.dp. This
alignment line is positioned at the left edge of the original component's visual bounds within
that newly expanded space.
This allows other layouts to align to the visual left of the component, ignoring the extra touch-target spacing, which is useful for precise visual alignment.
Note that only a left alignment line are provided. The minimumInteractiveComponentSize centers
its content and the space added to the left is symmetrical to the space added to the right, so
its position can be inferred.