ce375c902c
This commit refactors the `Reply` composable for better layout consistency and simplifies its implementation. The `Reply` component no longer uses a fixed height, allowing it to dynamically resize based on its content. The layout has been updated from a `Box` to a `Row` to properly align the side indicator bar with the height of the text content. Padding and corner rounding logic has been simplified and centralized within the `Reply` composable itself, removing redundant parameters from the `MessageBubble`. Key changes: - `Reply` composable now uses `Row` for its root layout instead of `Box`. - Removed the fixed `48.dp` height to allow dynamic content sizing. - The side indicator bar's height now matches the text content's height. - Simplified padding and shape logic in `MessageBubble` by removing conditional parameters passed to `Reply`. - Adjusted padding inside `MessageBubble` to accommodate the new `Reply` layout.