//
//  Grabber.swift
//  vibes
//
//  Created by Yamill Vallecillo on 7/30/25.
//
import SwiftUI

struct Grabber: View {
    var body: some View {
        VStack {
            // Drag handle - 32px wide, 4px tall, rounded
            RoundedRectangle(cornerRadius: 100)
                .fill(Constants.Colors.Background.Fog.dense)
                .frame(width: 32, height: 4)
        }
        .padding(16)  // 16px padding on all sides
    }
}
